'HTML input type="file" show multiple file extension option
I have a file upload on my page like below:
<input type="file" id="myFile" name="myFile" accept=".xls, .xlsx"/>
When open file dialog is opened, the option is like this

What I want is like this. This is an example from Ms. Excel program, and I want the open dialog file selection to be like this or at least similar to this

How can I achieve that?
Thank you.
Solution 1:[1]
i think gives you all custom file options
<input type="file" id="myFile" name="myFile" accept="application/*"/>
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Robin Hood |
