Languages
[Edit]
EN

JavaScript - close current tab in web browser window

3 points
Created by:
Lily
548

In this article, we would like to show you how to close the current tab (window) in a web browser using JavaScript.

Quick solution:

window.close()

Note:

For security reasons only the script that opens the window can close it.

 

Practical example

In this example, we use window.close() method to close the current tab on the button click event.

<!doctype html>
<html>
<body>
  <button onclick="window.close()">close this window</button>
</body>
</html>

 

References

  1. Window.close() - Web APIs | MDN
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join