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

javascript - three.js lot of meshes optimization -

smartface.io - Proper way to change color scheme for whole application -

Email notification in google apps script -