Archive for June 8, 2007

JavaScript: XMLHttpRequest status Property Values

Posted in JavaScript, Software, Web, Web 2.0, internet, programming on June 8, 2007 by Joey

In JavaScript, possible status values of the XMLHttpRequest object, after a response from the server has arrived, are simply the standard HTTP status codes. For example:

200 = OK
301 = Moved Permanently
404 = Not Found
500 = Internal Server Error

List of HTTP status codes