Saravana Kumar
Saravana Kumar

Reputation: 3729

Accept=".xls" not working in firefox and ie in HTML

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.

enter image description here

But in Firefox and Ie, it is not filtering.

enter image description here

Upvotes: 0

Views: 1111

Answers (1)

LTasty
LTasty

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

Related Questions