Created
October 13, 2011 18:51
-
-
Save dmongeau/1285123 to your computer and use it in GitHub Desktop.
Pop under
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
| 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