window.closed This property indicates whether the current window is closed or not. Syntax bRes = window.closed Parameters bRes is a boolean value. Example if ( window.opener.closed ) { // the window that opened me has been closed! } Notes Addtional notes. Specification DOM Level 0. Not part of specification.
This property indicates whether the current window is closed or not.
bRes = window.closed
bRes is a boolean value.
if ( window.opener.closed ) { // the window that opened me has been closed! }
Addtional notes.
DOM Level 0. Not part of specification.