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.
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.
|
|
|||||
|
|
Non-jQuery solution. Note you can't just use .click() as some browsers does not support it.
|
|||||
|
|
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. |
|||
|
|
|
You could also try this: http://code.google.com/p/upload-at-click/ |
|||
|
|
|
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. |
|||
|
|