Basically it boils down to, is there any case where it would be bad for me to call the success callback function on status codes under 400?
In looking at the list of status codes for HTTP, I don't think there would be but I want to make sure. I don't think I'll be getting 1XX level codes as they look like most of them return before the full request is processed and readyState === 4 (I don't care about IE 7's 122). And I want to still return success on a 302 and 304 status codes. So is status < 400 an acceptable way to catch all of this?
{"error":true,"code":401}and check that. signaling an http 401 indicates something happened at the http level, which is not true, everything about the http request worked perfectly. – Marc B Jan 23 '12 at 15:29