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
Post a Comment