Search
Link Search Menu Expand Document
Kony Quantum is now HCL Volt MX. See Revised Terminology. Current Quantum users, see the important note about API naming.

Event

The HttpRequest object contains the following event.

onReadyStateChange Event

Specifies a callback function that is invoked when there is a change in the state of the readyState property.

Syntax

onReadyStateChange()

Parameters

None.

Return Values

None.

Remarks

Your app can set this event to a function that performs custom processing whenever there is is a change of state in the HttpRequest object.

Example

var request = new voltmx.new.HttpRequest();
request.onReadyStateChange = callbackfunction;