Hi Html5 developers and HTML4 developers too...
I want to know whether is there any way to support window.fileReader API of html5 in IE8 and above.
the code below :
if(window.fileReader){
alert("supported"); // in html5 works and fires alert but not in IE8
}
Actually, i want to read the contents of file before submitting.
- Can i use some condition, if window.fileReader is supported then
follow 'A' line of code using HTML5 , else if window.fileReader is not supported then
use some other thing...to read the file - I also want to know the way to read the file contents without using
HTML5 fileAPI... but not using ActiveXObject.
Waiting for the response..