Close Window in JavaScript


/ Published in: Java
Save to your folder(s)

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.


Copy this code and paste it in your HTML
  1. <!-- Sample #1: form button -->
  2. <form>
  3. <input type=button value="Close This Window" onclick="javascript:window.close();">
  4. </form>
  5.  
  6. <!-- Sample #2: text link -->
  7. <a href="javascript:window.close();">Click Here to Close Window</a>
  8.  
  9. <!-- Sample #3: close window after a given number of seconds -->
  10. <body onload="setTimeout(window.close, 10000)">...</body>

URL: http://www.apphp.com/index.php?snippet=javascript-close-window

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.