TOC PREV NEXT INDEX

Put your logo here!


window.onpaint


An event handler for the paint event on the window.

Syntax

window.onpaint = funcRef 

Parameters

funcRef is a reference to a function.

Example

window.onpaint = doFunc; 

Notes

The paint event is raised when the window is rendered. This event occurs after the load event for a window, and reoccurs each time the window needs to be rerendered, as when another window obscures it and is then cleared away.

Specification

DOM Level 0. Not part of specification. 


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