Reputation: 3729
I want to open the File Reference window to upload .xls file. So i try to filter the file by setting '.xls' in accept attribute.
<input type="file" id="myFile" size="50" accept=".xls">
It is filtering fine in GoogleChrome.
But in Firefox and Ie, it is not filtering.
Upvotes: 0
Views: 1111
Reputation: 2008
<input type="file" id="myFile" size="50" accept="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.ms-excel" >
set mimeType and it works
Upvotes: 2