I have table export in Excel file that time Marathi data is automatically converted in another language but I want this Marathi data as it in Excel file column.
please check below my code.
please help me.
- function fnExcelReport() {
- var tab_text = " ";
- var textRange; var j = 0;
- tab = document.getElementById('headerTable');
-
- for (j = 0 ; j < tab.rows.length ; j++) {
- tab_text = tab_text + tab.rows[j].innerHTML + "";
-
- }
-
- tab_text = tab_text + "";
- tab_text = tab_text.replace(/]*>|<\/A>/g, "");
- tab_text = tab_text.replace(/]*>/gi, "");
- tab_text = tab_text.replace(/]*>|<\/input>/gi, "");
-
- var ua = window.navigator.userAgent;
- var msie = ua.indexOf("MSIE ");
-
- if (msie > 0 || !!navigator.userAgent.match(/Trident.*rv\:11\./))
- {
- txtArea1.document.open("txt/html", "replace");
- txtArea1.document.write(tab_text);
- txtArea1.document.close();
- txtArea1.focus();
- sa = txtArea1.document.execCommand("SaveAs", true, "Say Thanks to MIPL.xls");
- }
- else
- sa = window.open('data:application/vnd.ms-excel,' + encodeURIComponent(tab_text));
-
- return (sa);
- }