This event is a Microsoft extension to the W3C DOM.
Document.onreadystatechange="myHandlerFunction"
As well as the above JScript syntax, there are two alternatives:
Inline HTML:
<ELEMENT onreadystatechange="myEventHandler" ... >
Named Script (IE Only):
<SCRIPT FOR = object EVENT =
onreadystatechange>
The onreadystatechange event indicates when the
readyState property changes.
The handler for this event can be explicitly set with the
onreadystatechange property.
|