TOC PREV NEXT INDEX

Put your logo here!


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. 


mozilla.org | mailto:oeschger | bug 93108
TOC PREV NEXT INDEX