image_pdfimage_print

Monthly Archives: November 2020

JavaScript CSV Download – Excel + Umlaute

var downloadCsv = function(content, fileName) { var a = document.createElement(‘a’); mimeType = mimeType || ‘application/octet-stream’; var mimeType = ‘text/csv;encoding:utf-8’; var BOM = “\uFEFF”; content = BOM + content; if (navigator.msSaveBlob) { // IE10 navigator.msSaveBlob(new Blob([content], { type: mimeType }), fileName); } else if (URL && ‘download’ in a) { //html5 A[download] a.href = URL.createObjectURL(new Blob([content], […]

0