HTML експорт в EXCEL на jQuery
$("#export").click(function (e) {
window.open('data:application/vnd.ms-excel,' + encodeURIComponent($('#tableHolder').html()));
e.preventDefault();
});
Демо с CSS | Демо без CSS
$("#export").click(function (e) {
window.open('data:application/vnd.ms-excel,' + encodeURIComponent($('#tableHolder').html()));
e.preventDefault();
});