Skip to content

Instantly share code, notes, and snippets.

@dmongeau
Created October 13, 2011 18:51
Show Gist options
  • Save dmongeau/1285123 to your computer and use it in GitHub Desktop.
Save dmongeau/1285123 to your computer and use it in GitHub Desktop.
Pop under
function winClose()
{
window.top.opener=null;
window.close();
}
function closeWindow()
{
window.open('','_parent','');
window.close();
}
function popup()
{
var wdw = window.open('popup.html','popup1','width=300,height=300,scrollbars=0,resizable=0');
var wdw2 = wdw.open('about:blank');
wdw2.close();
var wdw = window.open('popup.html','popup2','width=300,height=300,scrollbars=0,resizable=0');
var wdw2 = wdw.open('about:blank');
wdw2.close();
var wdw = window.open('popup.html','popup3','width=300,height=300,scrollbars=0,resizable=0');
var wdw2 = wdw.open('about:blank');
wdw2.close();
var wdw = window.open('popup.html','popup4','width=300,height=300,scrollbars=0,resizable=0');
var wdw2 = wdw.open('about:blank');
wdw2.close();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment