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.

I've created an HTML file on my local machine that I open using a file:/// address. It includes JavaScript that opens new browser windows using window.open().

When I view this page in Firefox 5, the pop-up blocker blocks the new window. I can't override this behavior; clicking the pop-up blocker "Preferences" shows a menu item "Allow pop-ups for", which has no effect.

How do I allow pop-ups for file:/// addresses in Firefox 5?

share|improve this question
This might be useful old.nabble.com/Firefox-and-popup-whitelist-td22430634.html – D_V Aug 9 '11 at 17:31
I assume you tried something like file://* already? – Joseph Marikle Aug 9 '11 at 17:32
1  
I don't think you can. It's a security measure to prevent hostile sites from accessing local files. – silverstrike Aug 9 '11 at 17:33
@Joseph: that doesn't work, unfortunately. – Russell Silva Aug 9 '11 at 17:42
I'm pretty sure you can't do this. – Rocket Hazmat Aug 9 '11 at 17:43

1 Answer

Add <file> to the allowed list under Preferences/Options -> Content -> Block pop-up windows... Exceptions.

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.