|
Following is the table of all properties of XMLHttpRequest object:
Property
|
Description
|
onreadystatechange
|
Event handler for an event that fires at every state change
|
ReadyState
|
Object status integer:
0 = un-initialized
1 = loading
2 = loaded
3 = interactive
4 = complete
|
responseText
|
The text that server sends back to respond to a request.
|
responseXML
|
DOM-compatible document object of data returned from server
|
Status
|
Numeric code returned by server
404 = “Not Found”
200 = “Ok”
|
StatusText
|
String message accompanying the status code
|
|