
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.
Netscape Communications
http://developer.netscape.com
|