Skip to content Skip to sidebar Skip to footer

Why Ie 9 Not Supporting Javascript Function?

I'm trying to make a function for checking file size and extension on run time, I have done it and working properly on all browser except ie 9. Can anyone let me know where the pr

Solution 1:

IE9 does not support HTML5 File API, including FileReader() ..

A possible workaround would be to polyfill, the solution below uses Flash to provide access to the filesystem on browsers that don't support the File APIs (IE and Safari), but it does not support drag-n-drop.

Solution 2:

Instead, clone the input, place the clone where the original is, and move the original into a hidden form. You might have to use an iframe for this.

This would certainly work but involves some coding.

Post a Comment for "Why Ie 9 Not Supporting Javascript Function?"