Hi All,
I have the following input:
<input id="btnFile" type="file" name="files[]" multiple>
And here is the simple javascript function
$("#btnFile").on('change', function (event, files, label)
{
var lstFiles = $("#btnFile")[0].files;
...
});
The above code works fine with Chrome. It return an array for files that can be manipulated. However, in IE, I can pick only ONE file, and the lstFiles is NULL.
Do you know what is wrong with IE (settings???). Can someone shed a light?
Thanks.