Window.opener
The Window
interface's opener
property returns a reference to the window that opened the window, either with open()
, or by navigating a link with a target
attribute.
In other words, if window A
opens window B
, B.opener
returns A
.
Syntax
const openerWindow = window.opener
Value
A Window
-like object referring to the window that opened the current window (using window.open()
, or by a link with target
attribute set). If this window was not opened by being linked to or created by another, returns null
.
If the opener is not on the same origin as the current page, functionality of the opener object is limited. For example, variables and functions on the window object are not accessible. However, navigation of the opener window is possible, which means that the opened page can open an URL in the original tab or window. In some cases, this makes phishing attacks possible, where a trusted page that is opened in the original window is replaced by a phishing page by the newly opened page.
In the following cases, the browser does not populate window.opener
, but leaves it null
:
- The opener can be omitted by specifying
on a link, or passingrel
=noopenernoopener
in thewindowFeatures
parameter. - Windows opened because of links with a
target
of_blank
don't get anopener
, unless explicitly requested with
.rel
=opener - Having a
Cross-Origin-Opener-Policy
header with a value ofsame-origin
prevents settingopener
. Since the new window is loaded in a different browsing context, it won't have a reference to the opening window.
Specifications
Specification |
---|
HTML Standard (HTML) # dom-opener-dev |
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
opener |
1 |
12 |
1 |
9 |
3 |
1 |
1 |
18 |
4 |
10.1 |
1 |
1.0 |
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/Window/opener