Skip to content Skip to sidebar Skip to footer

Shim For Filereader() In Ie 9

Is there a shim for FileReader in IE 9? var reader = new FileReader();

Solution 1:

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.

Solution 2:

It looks like there is one https://github.com/ebidel/idb.filesystem.js (untested). http://html5please.com/ is great for this kind of question.

Solution 3:

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).

Post a Comment for "Shim For Filereader() In Ie 9"