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.

In what circumstances do blockup blockers in browsers activate, and in what circumstances do they not?

Can you ever use an onclick event on a link to trigger a popup (other than target = _blank) or will that always trigger the blockers?

share|improve this question

2 Answers

Most popup blockers are triggered when a popup is launched indirectly from a user action.

Some popup blockers are triggered when a user clicks, but most are not. Basically, if the popup is triggered within a click handler (or code that it calls), you are generally okay.

If possible, I would recommend avoiding popups entirely. They tend to disrupt the user experience, with a few exceptions.

share|improve this answer
I agree. A more user friendly solution/alternative of popups in a web application is to create a centered opaque div on the page, with some transparent mask behind it to mask other controls (like lightbox js). – tigrou Aug 26 '12 at 22:55
Completely agree with workflow issues / design. Its calling the FB auth login though, not something i can redesign into a sidebar. Clicking on a link calls a function which eventually shows the FB login dialog - which gets blocked. – Will Aug 26 '12 at 23:08

Here is a pretty detailed answer about pop-ups. Yes you can use an onclick event to trigger a popup and generally that's how ad companies make money -- they track your click to know you have seen the pop-up ad and count it so the people sending the pop-up to you get money.

Also here is a pretty detailed article on how pop-up blockers work.

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.