Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 years ago.
Is there a shim for FileReader
in IE 9?
var reader = new FileReader();
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 years ago.
Is there a shim for FileReader
in IE 9?
var reader = new FileReader();
This polyfill uses Flash to provide access to the filesystem on browsers that don't support the File APIs (IE and Safari), but does not support drag-n-drop.
This one uses Silverlight to allow drag-n-drop.
It looks like there is one https://github.com/ebidel/idb.filesystem.js (untested).
http://html5please.com/ is great for this kind of question.
IE9 doesn't support the HTML5 File API. Of course there might be other ways to implement the feature you are trying to implement (which by the way you haven't explained).