I am using this function, to download a text file.
This code works only on chrome browser,
What is eqivelent code in other browser for
- IE
- Firfox
- Safari
Kindly guide me
function downloadFileFnc(text, fileName)
{
var textCode = new Blob([text], { type: "application/text" });
var dldLnkVar = document.createElement('a');
dldLnkVar.href = window.URL.createObjectURL(textCode);
dldLnkVar.setAttribute('download', fileName);
dldLnkVar.click();
}