Basically I need to open a login window in a popup, so that it doesn't get blocked by popup blocker. Similar to what Janrain does in it's RPXnow solution. How do they do that?
相关问题
- Using Ruby's “ready?” IO method with gets, put
- Can a View on a PopupWindow display a PopupMenu?
- Why js onunload is invoked when popup page opens?
- Creating non-blocking socket in python
- How to session_write_close() in Laravel?
相关文章
- Should I use (non-blocking) NIO for UDP?
- Make Chrome Extension Popup Window Transparent
- What is the difference between a blocking and non-
- How do I check if an object is being @synchronized
- How to disable location bar and scroll bars of pop
- If a web server is non-blocking, does this mean it
- Is console output a blocking operation?
- jQuery function to open link in new window
Most pop-up blockers allow pop-ups that were triggered by a user action, e.g. clicking on one of the login links on the page you linked to.
So if you tie your login popup to a login button that the user has to click to open it then it ought to get past the blockers OK.
(or am I missing the point - were there other examples of popups you meant other than on their home page?)