skip to Main Content

Jquery – Export several tables to different excel worksheets of the same file

I have a table that I managed to export to excel, using the following solution by @Nidhin Chalil, that I simplified a bit : function tableToExcel(table, sheetName, fileName) { var uri = 'data:application/vnd.ms-excel;base64,', templateData = '<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns="http://www.w3.org/TR/REC-html40"><head><!--[if gte…

VIEW QUESTION
Back To Top
Search