X ML HTTP Request

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 2

XMLHttpRequest Object

Properties
readyState
responseText
responseXML
status
statusText

Event Handles
onreadystatechange

readyState

Value Definition
0 Uninitialised
Object contains no data
1 Loading
Object is currently loading its data
2 Loaded
Object has finished loading its data
3 Interactive
User may interact with the object even though it's not fully loaded
4 Complete
Object has finished initialising

status

Value Definition
200 OK
400 Bad Request
401 Unauthorized
403 Forbidden
404 Not Found
500 Internal Server Error

XMLHttpRequest Methods
abort ( )
getAllResponseHeaders ( )
getAllResponseHeader (HeaderName)
open(method, url, async, [user, pword])
send(content)
setRequestHeader(label, value)

You might also like