3 out of 5 rated this helpful - Rate this topic

status property

[This documentation is preliminary and is subject to change.]

Retrieves the HTTP status code of the request.

Syntax

JavaScript

p = object.status

Property values

Type: Integer

The HTTP status code.

Standards information

Remarks

status was introduced in Windows Internet Explorer 7.

For a complete list of HTTP status codes and their meanings, see status Property (IXMLHTTPRequest).

Examples

The following script checks the HTTP status code to determine if the request was successful:


if (oReq.status == 401)
    console.log('Access denied.');
else
    console.log(oReq.responseText);

 

 

Build date: 2/14/2012

Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ