jquery - Export in CSV from JSON in IE through javascript -
    how download table rows in csv format in internet explorer client side? @ present using below uri  method download in other browser. seems internet explorer not support below mechanism. want support ie version 8 till latest. ie appreciated.      var filename = "result";     var uri = 'data:text/csv;charset=utf-8,' + escape(csv);    var link = document.createelement("a");        link.href = uri;    link.style = "visibility:hidden";    link.download = filename + ".csv";    document.body.appendchild(link);    link.click();    document.body.removechild(link);          i got solution supporting ie 8+ me. need specify separator shown below.    if (navigator.appname == "microsoft internet explorer") {         var owin = window.open();     owin.document.write('sep=,\r\n' + csv);     owin.document.close();     owin.document.execcommand('saveas', true, filename + ".csv");     owin.close();   }     you can go ...