Am trying to trigger an upload box (browse button) using jQuery.
The method I have tried now is:
$('#fileinput').trigger('click');
But it doesn't seem to work. Please help. Thank you.
|
Am trying to trigger an upload box (browse button) using jQuery.
But it doesn't seem to work. Please help. Thank you. |
|||||||
|
|
This is due to a security restriction. I found out that the security restriction is only when the So i tried positioning it outside the viewport by setting see http://jsfiddle.net/DSARd/1/ call it a hack. Hope that works for you. |
|||||||||||||||||||
|
|
this worked for me: JS:
HTML:
CSS:
>>>Another one that works Cross-Browser:<<< The Idea is that you overlay an invisible huge "Browse" button over your custom button. So when the user clicks your custom button, he's actually clicking on the "Browse" button of the native input field. JS Fiddle: http://jsfiddle.net/5Rh7b/ HTML:
CSS:
JavaScript:
|
|||||||
|
|
I have it working (=tested) in IE8+, recent FF and chrome:
The key is focusing before firing the click (otherwise chrome ignores it). Note: you do NEED to have your input displayed and visible (as in, not
|
|||
|
|
adardesign nailed it regarding the file input element being ignored when it is hidden. I also noticed many people shifting element size to 0, or pushing it out of bounds with positioning and overflow adjustments. These are all great ideas. Here's a little example for those who want one:
|
||||
|
|
|
I managed with a simple $(...).click(); with JQuery 1.6.1 |
|||||||||||
|
|
Try this, it's a hack. the Position:absolute is for Chrome and trigger('change') is for IE.
|
|||
|
|
|
Actually, I found out a really easy method for this, which is:
This way, your file input field can have the css property display on none and still win the trade :) |
|||
|
|
|
Correct code:
|
||||
|
|
|
Based on Guillaume Bodi's answer I did this:
which means it's hidden to start with and then displayed for the trigger, then hidden again immediately. |
|||
|
|