Created
July 30, 2013 07:04
-
-
Save huydx/6110881 to your computer and use it in GitHub Desktop.
check pop-up window is closed or not
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var win = window.open('foo.html', 'windowName',"width=200,height=200,scrollbars=no"); | |
var timer = setInterval(function() { | |
if(win.closed) { | |
clearInterval(timer); | |
alert('closed'); | |
} | |
}, 1000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment