Guest User

Untitled

a guest
Nov 22nd, 2017
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. var winRef = window.open(url, "mywindow");
  2. winRef.focus();
  3. var checkUrl = setInterval(function(){
  4. if(winRef.closed){
  5. winRef.close();
  6. clearInterval(checkUrl);
  7.  
  8. }
  9. }, 1000);
Add Comment
Please, Sign In to add comment