EN
JavaScript - close current tab in web browser window
3 points
In this article, we would like to show you how to close the current tab (window) in a web browser using JavaScript.
Quick solution:
xxxxxxxxxx
1
window.close()
Note:
For security reasons only the script that opens the window can close it.
In this example, we use window.close()
method to close the current tab on the button click event.
xxxxxxxxxx
1
2
<html>
3
<body>
4
<button onclick="window.close()">close this window</button>
5
</body>
6
</html>