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

I've got a web page that looks like this

<html>
    <head>
        <title>File Upload Click Test</title>
        <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
    </head>
    <body>
        <div onclick="$('input[type=file]').click()" >CLICK SIMULATOR</div>
        <input type="file"></input>
    </body>
</html>

My goal is to have the div raise a click event on the file input, and this seems to work exactly as I'd expect in IE and Chrome, but doesn't work in Firefox (no file browser is opened when you click on the div).

Is there a way to get this working in FF?

link|improve this question

1  
It is coming in FF4: developer.mozilla.org/en/… – Roatin Marth Oct 27 '10 at 14:36
Read your problem and the answers given, unfortunately what they say seems to be correct. I found some another articles that may help to figure this out. check them. You'll solve the problem...! > 01. stackoverflow.com/questions/210643/… > > 02. stackoverflow.com/questions/2048026/… – ADynaMic Mar 13 '11 at 13:07
This morning I tested the script and it's work fine in firefox 4. Firefox 4 allows click event on the file input. – kriom Mar 26 '11 at 11:43
See this answer stackoverflow.com/questions/210643/… it works in FF also – TheVillageIdiot Apr 26 '11 at 6:50
feedback

closed as exact duplicate by casperOne Feb 21 at 1:26

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

3 Answers

up vote 6 down vote accepted

Is there a way to get this working in FF?

No, and it doesn't work in most common versions of IE, either. IE will open the dialog, but once you've selected a file with it the form won't actually submit.

Abandon hope. The only way to fake a file upload box is using the transparency technique, and that's really not recommended at all as browsers may lay out file upload boxes differently internally (or even provide a file upload control that doesn't include a Browse dialogue), making it highly likely you'll end up with an inoperable form.

Learn to love the grey file upload field, or use progressive enhancement to replace it with Flash where available.

link|improve this answer
5  
Abandon hope. Check. – kristian Dec 2 '09 at 1:38
1  
aaaawwwwwwwwwwwwwwwwwwwwwwww :( – Arnis L. Oct 5 '10 at 9:29
3  
It's working now in Firefox 4. – Shadow Wizard Mar 13 '11 at 9:29
feedback

This is prohibited due to security reasons. You really need to have your pointer on the input type="file" field.

If you're actually interested in styling the input type="file" field, you may find this article useful.

At least you're not the only one.

link|improve this answer
feedback

Here's the workaround (FF). The HTML bit:

<label>Upload Business Logo</label>
<input type="file" name="logo" id="logo" class="file-upload" />
<input type="text" id="text-logo" class="text-upload" readonly/>
<input type="button" id="btn-logo" class="btn-upload" alt="" />

CSS for the input file type:

.file-upload { display:none; }

The jQuery bit:

//bind click
$('#btn-logo').click(function(event) {
  $('#logo').click();
});

//capture selected filename
$('#logo').change(function(click) {
  $('#text-logo').val(this.value);
});

Upon form submit, the hidden input file will upload the file. Hope this helps :)

link|improve this answer
feedback

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