Skip to content Skip to sidebar Skip to footer

In Google Chrome, How Do I Bring An Existing Popup Window To The Front Using Javascript From The Parent Window?

I would like to have a button on a web page with the following behavior: On the first click, open a pop-up. On later clicks, if the pop-up is still open, just bring it to the fron

Solution 1:

You can't. Window.focus is disabled in Chrome for security reasons, and that is unlikely to change.

You have to close and repopen the respective window.

Solution 2:

Why not just do a popopWindow.focus() after the window.open call? It won't hurt to do it there too, and it should ensure that your new window is shown on top of the current one.

Solution 3:

The following code works for me when called in a onclick handler:

var popup = window.open('', 'popup-name', 'resizable,width=480=height=575');

if(popup.location == 'about:blank') {
    popup.location = 'http://google.com';
    return;
}

This code works by trying to access the popup's location, if its about:blank its a new popup and the url is set. Otherwise if the window with the same name 'popup-name' is already open the popup comes into focus. This code does need to be called from a onclick handler otherwise it will not work.

Solution 4:

As of today, just calling focus() on the reference to the popup just works and brings the window to the front. I am using Chrome version 62

Post a Comment for "In Google Chrome, How Do I Bring An Existing Popup Window To The Front Using Javascript From The Parent Window?"