I have a hidden file input element. Is it possible to trigger its select file dialog box from a button's click event?
|
feedback
|
|
If you're looking to have your own button to upload a file instead of using
Note that I used | |||
|
feedback
|
|
I'm not sure how browsers handle clicks on
I've tested this JSFiddle in Chrome, Firefox and Opera and they all show the file browse dialog. | |||||
|
feedback
|
|
There is no cross browser way of doing it, for security reasons. What people usually do is overlay the input file over something else and set it's visibility to hidden so it gets triggered on it's own. More info here. | |||||||||||||||
feedback
|