Closing a window

Question: How do I close a window?

Answer: To close a window that you previously opened from your script, you can use the window.close() method, for example:

winRef.close();
where winRef is the window reference, as returned by the window.open() method. The gotcha here is that the window referenced by winRef does not necessarily exist at the time when your script attempts to close it. (The user might well have closed it already!) And if the window no longer exists, your script may cause errors. Possible workarounds are the following:

If your script tries to execute window.close() for the main browser window that was opened by the user, most browsers will first invoke a dialog to ask the user whether to let the script close the browser window. Test this yourself: here is a script that attempts to close your browser window.

Copyright © 1999-2008, JavaScripter.net.