You can try using the following code:
<input id="fileSelect" type="file" accept=".csv, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.ms-excel" />
Valid Accept Types are as follows:
For CSV files (.csv), use this:
<input type="file" accept=".csv" />
For Excel Files 97-2003 (.xls), try this:
<input type="file" accept="application/vnd.ms-excel" />
For Excel Files 2007+ (.xlsx), use this:
<input type="file" accept="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" />
For Text Files (.txt) use the below code:
<input type="file" accept="text/plain" />
For Image Files (.png/.jpg/etc), try this:
<input type="file" accept="image/*" />
For HTML Files (.htm,.html), use this:
<input type="file" accept="text/html" />
For Video Files (.avi, .mpg, .mpeg, .mp4), try this:
<input type="file" accept="video/*" />
For Audio Files (.mp3, .wav, etc), use the below code:
<input type="file" accept="audio/*" />
For PDF Files, try this:
<input type="file" accept=".pdf" />
DEMO:
http://jsfiddle.net/dirtyd77/LzLcZ/144/
NOTE: If you want to display Excel CSV files (.csv), then do NOT use:
- text/csv
- application/csv
- text/comma-separated-values (works in Opera only).
If you want to display a particular file type (for example, a WAV or PDF), then use this:
<input type="file" accept=".FILETYPE" />