I would like to implement an excel export button to my table but i have no idea how to do it using only jquery. Here is a screenshot of the table. I want a button next to those in yellow color. Also, since there are a lot of columns (hidden) I want to export only the visible columns
Here is my table settings:
<div id="someTable">
<table id="table1" class="table table-hover table-data tab1" style="font-size: 0.8em;"
data-pagination="true"
data-search="true"
data-show-toggle="true"
data-show-columns="true"
data-show-export="true"
data-filter-control="true"
data-minimum-count-columns="2"
data-show-pagination-switch="true"
data-id-field="ID"
data-page-list="[10, 25, 100, ALL]"
>
</table>
</div>