I used download attribute to download the file. but it is not working in IE11. I want some other option to download the file in IE11.
a = document.createElement("a");
document.body.appendChild(a);
a.style = "display: none";
a.href = url;
a.download = fileName;
a.click();