TOC PREV NEXT INDEX

domref



contentWindow


Returns the containing window of the current document.

Syntax

window = document.contentWindow
 

Parameters

window is a window object for the window that contains the current document.

Example
// get to the browser
 
// then load new content
 
browserWindow = document.contentWindow;
 
browserWindow.home();
 

Notes

None.


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