Jquery table to Excel is not working in Firefox and IE -


i using below code export table excel.

it working fine in chrome, it's not working in firefox , ie.

$("#exportbutton").click(function(e) {         var table_div = document.getelementbyid('availablepeopletable');         var table_html = table_div.outerhtml.replace(/ /g, '%20');         a.href = data_type + ', ' + table_html;         a.download = 'availability_report_' + postfix + '.xls';         //triggering function         a.click();         //just in case, prevent default behaviour         e.preventdefault();     }); 

can me this?


Comments

Popular posts from this blog

c++ - Difference between pre and post decrement in recursive function argument -

php - Nothing but 'run(); ' when browsing to my local project, how do I fix this? -

php - How can I echo out this array? -