Close Window in JavaScript
The function that closes window is very useful when you use a pop-up window on your page,
because it allows the visitor to easily close the window. You can also do it several ways:
to use a button, a text link or make the window closes automatically after a given number of seconds.
[View All Snippets]
[View All Snippets]
Show Plain Text »
- <!-- Sample #1: form button -->
- <form>
- <input type=button value="Close This Window" onclick="javascript:window.close();">
- </form>
- <!-- Sample #2: text link -->
- <a href="javascript:window.close();">Click Here to Close Window</a>
- <!-- Sample #3: close window after a given number of seconds -->
- <body onload="setTimeout(window.close, 10000)">...</body>