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.

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.

share|improve this question
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

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

share|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

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?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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