Preserved Topic: window.close() (Page 1 of 1) |
|
---|---|
Paranoid (IV) Inmate From: Seattle, WA, USA |
posted 05-09-2002 00:29
OK, so I want to close a window without the annoying thing coming up that says This page is trying to close the window do you want to let it. I know there must be a way, because when a person clicks a link that closes a window it closes without that message. So, anyone know how I'd do this without any user input like clicking a link. |
Lunatic (VI) Mad Scientist From: Massachusetts, USA |
posted 05-09-2002 00:54
You can only close windows that you've opened yourself without that message appearing. |
Paranoid (IV) Inmate From: Seattle, WA, USA |
posted 05-09-2002 01:25
How would I close another window. I tried just doing: |
Lunatic (VI) Mad Scientist From: Massachusetts, USA |
posted 05-09-2002 01:48
window always refers to the current window. If you want to refer to another window, you have to get a reference to that window, like this: |
Paranoid (IV) Inmate From: Seattle, WA, USA |
posted 05-09-2002 02:28
Thanks, I thought you used the title of the window as an argument, oh well. Thanks again, it's working fine now. |