TOC PREV NEXT INDEX

domref



window.window


Returns a reference to this window.

Syntax

windowObj = window.window
 

Parameters

windowObj is an object reference to the current window.

Example

if ( window.top ) != ( window.window ) {
 
  ...
 
}
 

Notes

This property is redundant. window is itself an object reference that can be used in all cases where window.window can. If for no other reason, it may exist so that comparisons like the example above are more readable.


Specification

DOM Level 0. Not part of specification.
 


Netscape Communications
http://developer.netscape.com
TOC PREV NEXT INDEX