Home >Web Front-end >JS Tutorial >Self Closing Browser Tab with JavaScript

Self Closing Browser Tab with JavaScript

Susan Sarandon
Susan SarandonOriginal
2024-12-03 11:51:11234browse

Self Closing Browser Tab with JavaScript

Did You Know You Can Close a Browser Tab Using JavaScript?

It might surprise you to learn that you can close a browser tab programmatically with JavaScript. Yes, it’s possible—using the window.close() method.

This method is typically used only with popup windows, so I was just as surprised as you might be when I first discovered that you can also use it on regular tabs when a page I visited unexpectedly closed after I submitted a form. It felt strange—almost like something you'd expect from a mobile app crashing due to a bug. But on the web, things don’t work that way.

Unlike mobile applications, web pages or browser tabs don’t simply "crash" and close due to a fatal error. At worst, the page may freeze, or you’ll encounter an error message. So, how was this tab closing itself? Intrigued, I decided to dig deeper into the mechanics behind this behaviour.

If you’re curious to see this in action, you can try it right now using your browser's developer tools. Here’s how:

  • Open the Developer Tools on this page (usually by pressing F12 or Ctrl Shift I on Windows, or Cmd Option I on macOS).
  • Navigate to the Console tab.
  • Type the following command and press Enter:
window.close();

Or

Live demo

The above is the detailed content of Self Closing Browser Tab with JavaScript. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn