onreadystatechange Property
Sets or retrieves the event handler for asynchronous requests.
Syntax
[ vHandler = ] object.onreadystatechange [ = v ]
Possible Values
vHandler Variant that specifies or receives the event handler. The property is read/write. The property has no default value.
Remarks
onreadystatechange was introduced in Windows Internet Explorer 7.
Example
The following script demonstrates how to set an event handler that responds to asynchronous events:
function reportStatus() { if (oReq.readyState == 4) alert('Transfer complete.'); } var oReq = new XMLHttpRequest(); oReq.onreadystatechange = reportStatus; oReq.open("GET", "https://localhost/test.xml", true); oReq.send();
Standards Information
This property is defined in The XMLHttpRequest Object (W3C Working Draft)
.
Applies To
See Also