JSFiddle - React, Tailwind, and code Playground

by ramnathv

HTML

<script src="http://csvscript.com/dev/html5csv.js"></script>
<div id='output'></div>
<button id="download">Download</button>

CSS

tbody tr:nth-child(odd){ background-color: #dddddd;}
tbody tr:nth-child(even){ background-color: #ffffff; }

JavaScript

CSV.
  begin([
   ["Hello","World"],
   ["Paul","Earth"],
   ["Marvin","Mars"],
   ["Spock","Vulcan"]
         ]).
  table("output",{
      header:1,
      caption:"My First html5csv program"}).
  save("session/helloWorld").
  go();

$('#download').on('click', function(e){
  CSV.
    begin("session/helloWorld").
    download("HelloWorld.csv").go();
})