Blob went away in IE 11?
JavaScript
1
Posts
1
Posters
0
Views
1
Watching
-
I was using Blob to save a file.
var blob = new Blob(\[output\], { type: "text/plain;charset=utf-8" }); saveAs(blob, "FileName.csv");
It stopped working in IE 11 for some reason on multiple computers. It still works in other browsers. My question is either, 1) how can I get Blob working again in IE or 2) is there another way to save a file without using Blob? Thanks Brent
Brent