Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there any way to open the browse for files dialog box when a <a href> link is clicked using javascript? It should function like a normal browse for files button and give the names/list of files selected in response.

share|improve this question
like uploading but without? – Mauricio Jun 24 '11 at 4:40
functions are not necessary to restrict file extensions <input id="foto" name="foto" type="file" accept="image/jpeg, image/jpg"/> – user1823885 Nov 14 '12 at 13:46

4 Answers

up vote 6 down vote accepted

Non-jQuery solution. Note you can't just use .click() as some browsers does not support it.

<script type="text/javascript">
function performClick(node) {
   var evt = document.createEvent("MouseEvents");
   evt.initEvent("click", true, false);
   node.dispatchEvent(evt);
}
</script>
<a href="#" onclick="performClick(document.getElementById('theFile'));">Open file dialog</a>
<input type="file" id="theFile" />
share|improve this answer
Its important to note that if you do this, and then use javascript to submit the form e.g. form.submit() you will get an access is denied error – nuander Jun 1 '12 at 15:57
@nuander see related: stackoverflow.com/questions/3935001/… – Samuel Liew Jan 11 at 3:09

Here is a solution with jquery. It basically hides a file input via css.

Another way is outlined here although I am not sure if it is cross-browser friendly.

share|improve this answer

You could also try this: http://code.google.com/p/upload-at-click/

share|improve this answer

I know this is an old post, but another simple option is using the INPUT TYPE="FILE" tag according to compatibility most major browser support this feature.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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