In JavaScript can I make a “click” event fire programmatically for a file input element?

I have been searching for solution to this whole day. And these are the conclusions that I have made:

  1. For the security reasons Opera and Firefox don’t allow to trigger file input.
  2. The only convenient alternative is to create a “hidden” file input (using opacity, not “hidden” or “display: none”!) and afterwards create the button “below” it. In this way the button is seen but on user click it actually activates the file input.

Hope this helps! 🙂

<div style="display: block; width: 100px; height: 20px; overflow: hidden;">
<button style="width: 110px; height: 30px; position: relative; top: -5px; left: -5px;"><a href="https://stackoverflow.com/questions/210643/javascript: void(0)">Upload File</a></button>
<input type="file" id="upload_input" name="upload" style="font-size: 50px; width: 120px; opacity: 0; filter:alpha(opacity=0);  position: relative; top: -40px;; left: -20px" />
</div>

Leave a Comment