Skip to content

woshifan1989/excellentexport

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ExcellentExport.js

Javascript export to Excel or CSV

A quick Javascript librery to create export to Excel/CSV from HTML tables automatically in the browser. No server required.

Check my blog page for testing: Javascript export to Excel

ExcellentExport.js update: Javascript export to Excel and CSV

Compatibility

Firefox, Chrome, IE6+

Usage

<table id="datatable">
    <tr>
        <td>100</td> <td>200</td> <td>300</td>
    </tr>
    <tr>
        <td>400</td> <td>500</td> <td>600</td>
    </tr>
</table>

<a download="somedata.xls" href="#" onclick="return ExcellentExport.excel(this, 'datatable', 'Sheet Name Here');">Export to Excel</a>
<a download="somedata.csv" href="#" onclick="return ExcellentExport.csv(this, 'datatable');">Export to CSV</a>

Revision history:

1.0 Added Excel data export

1.1 Added CSV data export

1.3 Added support for IE6, IE7, IE8, IE9. Added minified version.

About

Javascript export to Excel

Resources

License

Stars

Watchers

Forks

Packages

No packages published