Posts

Showing posts from November 18, 2015

Export To Excel Using Jquerry

function download(strData, strFileName, strMimeType) {     var D = document,         a = D.createElement("a");     strMimeType = strMimeType || "application/octet-stream";     if (navigator.msSaveBlob) { // IE10+         return navigator.msSaveBlob(new Blob([strData], { type: strMimeType }), strFileName);     } /* end if(navigator.msSaveBlob) */     if ('download' in a) { //html5 A[download]         if (window.URL) {             a.href = window.URL.createObjectURL(new Blob([strData]));         } else {             a.href = "data:" + strMimeType + "," + encodeURIComponent(strData);         }         a.setAttribute("download", strFileName);         a.innerHTML = "downloading...";         D.body.appendChild(a);         setTimeout(function () {             a.click();             D.body.removeChild(a);             if (window.URL) { setTimeout(function () { window.URL.revokeObjectURL(a.href); }, 250);