Javascript/Jquery export to Excel in Internet Explorer 10+ -
I have done a lot of research and have come to a conclusion that it is possible to export data only to use Excel Is not the client side through javascript / junkie for internet explorer 10+ because it does not support Yuri's object.
By using only client side, does anyone provide the option to manage such a situation in IE?
Any help would be greatly appreciated thanks!
If Yuri is not working, then use blob . Its work is fine, but in IE 10, its functioning is fine instead of URI usage. Use code CSV is your data
var blob = new blob ([CSV], {type: 'text / csv'}); If (navigator.msSaveBlob) {// IE 10+ navigator.msSaveOrOpenBlob (Blob, filename + '.csv'); }
Comments
Post a Comment