vote up 1 vote down star

When clicking on the text box part of an <input type="file" /> in FireFox3, a file browsing window opens.

This doesn't happen in IE7. You have to click the "browse" button to open the file browsing window.

How can I prevent the file browsing window from opening in FireFox when a user clicks on the textbox area? I'd like it so it only opens when the button is pressed.

flag

75% accept rate

7 Answers

vote up 2 vote down check

How can I prevent the file browsing window from opening in FireFox when a user clicks on the textbox area?

Obscure it with another element.

<div style="position: relative">
    <input type="file" />
    <div style="position: absolute; top: 0; left: 0; width: 11em; height: 2em;"> </div>
</div>

But don't do this. It's awfully brittle and will break in many circumstances.

I'd like it so it only opens when the button is pressed.

I doubt your users would like it, though. It removes expected functionality from the browser, and doesn't replace it with anything better. Or indeed anything at all.

link|flag
Thank you for trying to answer the question. – hornysax Jan 21 at 17:35
This will also disable the "Browse" button unless the width is exactly the same as the text-box. It will also disable the ability to highlight the text in the box and copy. – Adam Peck Jan 21 at 17:46
Indeed, as noted it's not ideal. The size in em matches more-or-less what Firefox 3 does but you can never be exact. And of course it would break other browsers. But for Firefox 3, alas, the cut-and-paste ability is already gone. – bobince Jan 21 at 17:52
I can copy in FireFox3. I have only tested it on the Mac but you can copy the text. And yes it will break all other browsers unless you insert it dynamically for FireFox only. It will probably break Safari totally as it's file input is much shorter than the others. – Adam Peck Jan 21 at 18:17
vote up 0 vote down

Would a simple workaround not be to create a text input field and also a button, with the button being used to trigger the file browser and then populate the info back into the text field? I'm fairly new to all this and am reading a lot of issues on this problem, including the fact that FF3 doesn't apply the same css styles to the input=file as it did in previous versions.

link|flag
vote up 0 vote down

Yeah i have the same problem too, i'm building a cool upload control, and i want it to do that : - the user can upload anything when he browses his hard drive and upload - when the user types something that begins with "http://", a popup appears and ask him to name the hyperlink, and then a .url is created among other uploads. It's nice you can do that with a simple file upload with IE, but Firefox prevents it and it sucks.

Unfortunately it is impossible to do that with FF, so i guess i have to roam throught something else, but it is a shame, and for me, it's clearly a limitation since the security/privacy upload problem is the same with IE or Firefox.

link|flag
vote up 0 vote down

Yes it does, and there's nothing that a webpage can do about it.

I'm not aware of a FF config setting that would control this, so you're stuck with #3:

With an extension it might be possible to change this behavior, but then you'd have to get your users to install your extension (may be feasible for an internal app) and cope with the bugs it might introduce into the application.

link|flag
vote up 5 vote down

Firefox behaves this way in order to prevent an exploit using the file input.

See the end of this blog entry and some of the comments below.

I agree that it is very annoying, not as a website designer/developer but as a user of Firefox; sometimes I just want to paste a filename and not have to click through the dialogs.

link|flag
It acts just like the Safari one. Is he expecting to change the way it works? – Adam Peck Jan 21 at 16:15
I have to admit, it is unexpected for something that looks like a text input control to behave in this way. I mean anything else that looks like a text input, you can click and then type some text. So I can understand that he wants to change something that is strange to him. – Francisco Canedo Jan 21 at 16:52
You can paste the filename including full path in the filename box of the windows file open dialog. – awe Oct 9 at 6:23
vote up 2 vote down

Even if you really would want to do that, i don't think it is possible.

link|flag
vote up 16 vote down

Why can't you leave expected behavior alone? Most people who use FireFox will expect it to happen. Unless there is an actual "design" reason that you did not state for making this happen please don't try and change it.

link|flag
Thanks for the answer sir, but my question requires a technical answer. – hornysax Jan 21 at 16:05
It's not technically possible. If you want to change the default behavior of FireFox you can write a PlugIn for it. – Adam Peck Jan 21 at 16:13
2  
@hornysaax Sometimes the technical answer is "don't do that". – ceejayoz Jan 21 at 16:36

Your Answer

Get an OpenID
or

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