TOC PREV NEXT INDEX

Put your logo here!


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. 


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