Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zenoo/excel-export
Export your HTML table to Excel format.
https://github.com/zenoo/excel-export
excel excel-export export-excel
Last synced: about 1 month ago
JSON representation
Export your HTML table to Excel format.
- Host: GitHub
- URL: https://github.com/zenoo/excel-export
- Owner: Zenoo
- License: mit
- Created: 2018-05-21T13:53:02.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-06-08T14:50:48.000Z (over 5 years ago)
- Last Synced: 2024-08-08T22:53:36.317Z (5 months ago)
- Topics: excel, excel-export, export-excel
- Language: JavaScript
- Homepage:
- Size: 11.7 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# excelExport
Export your HTML tables to Excel format.
### Doc
* **Installation**
Simply import JQuery & excel-export into your HTML.
```
```
* **How to use**
Select your table(s) with a JQuery selector.
```
$('table').excelExport();
```
* **Options**
```
{
toRemove: ['a','div','img','input'], //Selectors to remove before exporting
title: 'Exported_Table' //File name
}
```
* **Example**
```
$('table').excelExport({
toRemove: ['a.hidden','div'],
title: "Table_Test"
});
```## Authors
* **Zenoo** - *Initial work* - [Zenoo.fr](http://zenoo.fr)