Problem to Download exported csv file for DHTMLX Treegrid

Hi,

var myCSVString = HomeGrid.serializeToCSV(true);
var lines = myCSVString.split(",");
$("#exportcsv").attr(‘download’, Filename + ’ @DateTime.Now’ + ‘_GridData.csv’)
$("#exportcsv").attr(“href”, ‘data:Application/octet-stream,’ + (escape(lines)));

According to the above code we are not able to download CSV in Internet Explorer.
Please let us know how to download exported CSV file in IE as it is already working fine in Chrome and Firefox.

Regards
Devanshi