Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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)