
Yet another table to csv converter that enables the user to download your HTML table as a CSV file directly from the browser.
How to use it:
1. Import the TableToCSV JavaScript library into the document.
<script src=”dist/table-to-csv.min.js”></script>
2. Convert your HTML table to a CSV file.
const tableToCSV = new TableToCSV("#myTable", {
filename: "example.csv",
});3. Download the CSV file when needed.
tableToCSV.download();
4. Customize the delimiter in the CSV file. Default: “-“.
const tableToCSV = new TableToCSV("#myTable", {
filename: "example.csv",
delimiter: "-"
});5. Specify the column index to ignore specific columns when exporting.
const tableToCSV = new TableToCSV("#myTable", {
filename: "example.csv",
ignoreColumns: [0],
});






