statusText property
Retrieves the friendly HTTP status of the request.
Syntax
| JavaScript | |
|---|
Property values
Type: String
The HTTP status of the request.
Standards information
- XMLHttpRequest, Section 3.7.2
Remarks
statusText was introduced in Windows Internet Explorer 7.
Examples
The following script checks the status to determine if the request was successful:
oReq.open("GET", "http://localhost/test.xml", false); oReq.send() if (oReq.statusText == "OK") console.log(oReq.responseText); else console.log(oReq.statusText);
See also
Show: