A sample of my code is here: http://develop.davzy.com/test2.php

<input name="avatarfile" type="file" id='uploadbutton' />
<script>document.getElementById("uploadbutton").click()</script>

It is supposed to open the file selector as soon as you open the page. It works in IE8, IE9, FireFox, but not in Chrome.

link|improve this question

78% accept rate
1  
Firefox 7 also blocks it. It must be a security feature. I would hate sites opening my "browse files" window. Inexperienced web users can easily upload a file, without realizing. – Emil Oct 22 '11 at 4:07
2  
duplicate stackoverflow.com/questions/210643/… – Emil Oct 22 '11 at 4:12
The reason I want this is because I want it so when the user pushes "upload image" it will open this im the background, and I wanted it to open the upload dialog. – user309641 Oct 22 '11 at 13:45
feedback

2 Answers

up vote 1 down vote accepted

is because the browser blocks pop-ups, at least in firefox tells me a pop-up blocking

link|improve this answer
1  
which part has a popup? – Ibu Oct 22 '11 at 4:13
1  
firefox detect the file selector as a popup – Adum_264 Oct 22 '11 at 4:22
feedback

It won't work, not even in Firefox (7+). It's a security measure to avoid hijacking of the input field.

Regarding the pop up, Firefox warns you that the page is trying to pop up a window (the file upload dialog is an ui window) on page load, so the user is notified and is given the choice to allow it or block it.

Anyway, why would you need to open an file dialog on page load?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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