opener property

JSAny? get opener

The Window interface's opener property returns a reference to the window that opened the window, either with Window.open, or by navigating a link with a target attribute.

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

Implementation

external JSAny? get opener;
set opener (JSAny? value)

Implementation

external set opener(JSAny? value);