Is there a set of best-practices or advice to avoid pop up windows being blocked by the different browsers pop-up blockers?
By pop-up I mean windows created by either window.open
or window.showModalDialog
methods.
Thanks a lot
Edit:
I do not plan to bypass the pop-up blockers with hacks. I came to this while developing an OAuth authentication flow purely in javascript and I needed to show the user the "grant access" window (I couldn't avoid the pop-up blockers and had to use a different approach).