I have a hidden file input element. Is it possible to trigger its select file dialog box from a button's click event?

link|improve this question

feedback

4 Answers

up vote 2 down vote accepted

If you're looking to have your own button to upload a file instead of using <input type="file" />, you can do something like:

<input id="myInput" type="file" style="visibility:hidden" />
<input type="button" value="Show Dialog" onclick="$('#myInput').click();" />

Note that I used visiblity:hidden, not display:none. You cannot call the click event on a non-displayed file input.

link|improve this answer
feedback

I'm not sure how browsers handle clicks on type="file" elements (security concerns and all), but this should work:

$('input[type="file"]').click();

I've tested this JSFiddle in Chrome, Firefox and Opera and they all show the file browse dialog.

link|improve this answer
+1, also works in IE7+ since jQuery 1.7 – Xeon06 Dec 21 '11 at 20:10
@Xeon06 Thanks for testing. – JamWaffles Dec 21 '11 at 20:12
feedback

Using jQuery you can call click() to simulate a click.

link|improve this answer
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.

link|improve this answer
1  
The OP is talking about <input type="file">, not <select>. – JamWaffles Dec 21 '11 at 19:47
@JamWaffles oops, I read that too quickly. Thanks. – Xeon06 Dec 21 '11 at 19:52
Not a problem. I've done it myself before. In response to your edit, there is a way to do it; by triggering the element's click event with jQuery $.click(). – JamWaffles Dec 21 '11 at 19:54
@JamWaffles okay that's weird. I clearly remember spending a whole day on this a few weeks back. It didn't work in Firefox and IE afair. I wonder what the deal was... – Xeon06 Dec 21 '11 at 20:00
1  
Good research effort there! If I go a penny for every time web developers had to hack some pretty normal behaviour into something, I'd be filthy rich. – JamWaffles Dec 21 '11 at 20:10
show 5 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.