Can you close browser window in javascript?

What works, what doesn’t, in a nutshell

Can you close browser window in javascript?

Photo by Nathan Fertig on Unsplash

How can I close a window with JavaScript?

It’s interesting how often this question comes up. It can be answered very quickly. As the MDN says,

Scripts may not close windows that were not opened by script

What does this statement really say?

First: Opening and Closing Windows.

Windows are opened with

window.open(); — full syntax here

Windows are closed with

window.close(); — full syntax here
(but not always!)

This is where the MDN statement comes into play. A simple example should clear this up.

Example:

I’ve created two pages, Page1.html (the parent window) and Page2.html (the child window.)

Since I did not specify the size of the window, it will open as a new tab in the browser. This all works for popup windows as well.

The JavaScript functions are to,

  1. Close the child window.
  2. Close the parent. Hmm.

Can you close browser window in javascript?

Parent

Can you close browser window in javascript?

Child

Running the example

Run Page1.html and click “Open child”. A child window opens as separate window as a tab.

Can you close browser window in javascript?

Child opens as a tab

Go back to the parent and click “Close child” and the child window closes. Viola!

Can you close browser window in javascript?

Now, on the parent, click “Close me”. Nothing happened. Bummer!
Actually something did happen. I tried to close it two ways. window.close() and self.close(). See the console.log();

Can you close browser window in javascript?

Window can close itself (or can it?)

So a window can’t close itself.

Hold on just a minute!

According to the MDN it can close itself, under the right conditions.

Add the following button and closeMe() function to Page2.html (child.)

Can you close browser window in javascript?

Additions to child

Running the example

Run Page1.html and click “Open child”. A child window opens as separate window as a tab, just as before.

Now click the “Close me” in the child. It closes. Viola!

That window closed itself. Observations below.

Conclusion:

  • Since we opened the child using a script, and had a reference handle to that child (in the variable “child”), by the MDN statement, we were able to close it using the handle to the window.close(); (child.close();)
  • Since the parent was not opened with window.open(); it cannot be closed using window.close() or self.close().
  • Since the child window was opened with script, window.open(); it can close itself.

So the statement,

Scripts may not close windows that were not opened by script.

Makes more sense now.

I hope this simple example has cleared a few thing up.

Thanks for reading!

Hold on. One last comment.

If the parent is refreshed, it loses the reference to the child and the parent cannot close the child. Help!

Try it

  1. Open Page1.html and click “Open child”.
  2. Refresh the parent, Page1.html and click “close Child”, fail!

Solution

You will notice I had a variable called “childname”. If we store that on the page, we can use it to get a reference again!

Below, in Page1.html, I added a text field (could be a hidden field), removed the closeMe() function since that was an epic fail! and modified the closeChild() function to look and see if the reference was lost. If so, use the window’s name stored on the form.

Can you close browser window in javascript?

Observe closeChild()

Running the Example

  1. Open Page1.html and click “Open child”, then click “Close child”. Still works.
  2. Open Page1.html and click “Open child”. Refresh Page1.html, click “Close child” on Page1.html. Child closes. Yay!

Happy coding!

Can JavaScript close the browser?

As of 2017, there is no way to close a web browser tab or window using JavaScript. Modern security standards do not permit this behavior.

How do you close a screen in JavaScript?

Simply call window. close() and it will close the current window.

How do you close a website using JavaScript?

To close a window or tab that was opened using JavaScript, call window. close() .

What method is used to close a window in JavaScript?

close() The Window. close() method closes the current window, or the window on which it was called. This method can only be called on windows that were opened by a script using the Window.