Detect when a popup is closed

5.3k Views Asked by At

I have a popup made with:

var popup = window.open(URL, ...) //content of popup is not in my control

I want to know when the popup is closed, and thought the below code could help me.

$(popup).unload()

However, Firefox initiates the unload event when the popup appears, not when it's closed!

Is there a reliable way to know when a popup is closed, by the opener?

I don't particularly like polling the popup asking every (say) 500ms if it's closed...

(I found this solution on How to know when popup is closed in javascript)

3

There are 3 best solutions below

2
On

It seems popup.location will return null if it's closed and an empty set if it's open.

popup.location // Open Window

=> Location 
      No Properties Defined

popup.location // Closed Window

=> null

Test with:

if (popup.location) {alert('hello')}
4
On

If you can add a onbeforeunload event handler in popup then try something like this,

parent:

function parentCallback(){
  alert("popup is closed");
}

var popup = window.open(URL, ...);

POPUP:

window.onbeforeunload = function(){
    window.opener.parentCallback();
    self.close();
};

else make use of interval, thats what i could suggest, something like

var pop_win = window.open(url,...);   
var timer = setInterval(function() {   
    if(pop_win.closed) {  
        clearInterval(timer);  
        alert('popup is closed');  
    }  
}, 1000);  
1
On

I know this question is a bit old, but for others searching for the answer I think I have found a solution:

You might be able to do like this (it has worked for me anyway, also in FF):

Parent:

var popup = window.open("about:blank"); // Or whatever page you are loading
popup.onunload = function(){
    parent.location.reload();
        // or
    parent.alert("Popup closed!");
        // or any other handler in the parent window,
        // just remember to call it on the parent object.
};