Window.opener

The Window interface's opener property returns a reference to the window that opened the window using open().

In other words, if window A opens window B, B.opener returns A.

Syntax

const openerWindow = window.opener

Value

A Window 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.

In modern browsers, a rel="noopener noreferrer" attribute on the originating <a> element will prevent the window.opener reference from being set, in which case this property will return null.

Specifications

Specification Status Comment
HTML Living Standard
The definition of 'window.opener' in that specification.
Living Standard

Browser compatibility

DesktopMobile
ChromeEdgeFirefoxInternet ExplorerOperaSafariAndroid webviewChrome for AndroidFirefox for AndroidOpera for AndroidSafari on iOSSamsung Internet
openerChrome Full support 1Edge Full support 12Firefox Full support 1IE No support NoOpera Full support 3Safari Full support 1WebView Android Full support 1Chrome Android Full support 18Firefox Android Full support 4Opera Android Full support 10.1Safari iOS Full support 1Samsung Internet Android Full support 1.0

Legend

Full support
Full support
No support
No support