I got a javascript code that works in FF, chrome and other browser except IE
Here it is
var inputfile = document.getElementById('inputfilename');
var filetype = inputfile.files[0].type;
var filesize = inputfile.files[0].size;
var filename = inputfile.files[0].name;
Now the variable filetype, filesize and filename is undefined in IE
So how to get those three property in IE ?
Any help will be appreciated.
fiddle : http://jsfiddle.net/vY9y8/