TOC PREV NEXT INDEX

domref



window.onload


An event handler for the load event on the window.

Syntax

window.onload = funcRef
 

Parameters

funcRef is a reference to a function.

Example

window.onload = init;
 

Notes

The load event is fired at the end of the document loading process. At this point, all of the objects in the document are in the DOM.

Specification

DOM Level 0. Not part of specification.
 


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