Author: | yasharma |
---|---|
Views Total: | 7,371 views |
Official Page: | Go to website |
Last Update: | June 11, 2016 |
License: | MIT |
Preview:

Description:
CsvToTable.js is a very small JavaScript library which has the ability to render an html table from your local CSV file.
How to use it:
Link to the JavaScript file CsvToTable.js as follow:
<script src="CsvToTable.js"></script>
Create a new CsvToTable object and specify the path to the CSV file you want to parse.
var csvtotable = new CsvToTable({ csvFile: 'data.csv' });
Render an HTML table in the document.
csvtotable.run();