I see that they added a function for status codes

statusCode(added 1.5)Map Default: {} A map of numeric HTTP codes and functions to be called when the response has the corresponding code. For example, the following will alert when the response status is a 404:

$.ajax({   statusCode: {404: function() {
    alert('page not found');   } }); 

If the request is successful, the status code functions take the same parameters as the success callback; if it results in an error, they take the same parameters as the error

I am wondering can you do something like $.ajax({...}).statusCode(function(){...});

Simliar to how you can do

var jqxhr = $.ajax({ url: "example.php" })
    .success(function() { alert("success"); })
    .error(function() { alert("error"); })
    .complete(function() { alert("complete"); })
link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Yes, you can. The function is, as far as I can tell, undocumented, but the functionality seems to be exactly as you'd expect -- you pass in an object map of handler functions where the key is the HTTP response code and the value is the handler function. See the source code.

Example

$.ajax({ url: "example.php" })
    .statusCode({
        200: function(){
            alert('success');
        },
        404: function(){
            alert('not found');
        }
    });
link|improve this answer
I guess if your using .success though that is like a 200 response right? – chobo2 Mar 2 '11 at 18:05
@chobo2 success will run on status codes <400. Otherwise, error handlers would run. statusCode allows more granularity, if you need it. – lonesomeday Mar 2 '11 at 18:07
jQuery 1.5 doesn't fire the 400, 401 as given for JSONP: 401: function(){ alert('not authorized'); }, 400: function(){ alert('bad request'); } Due to the known issue, seems like. – Mohammed Arif Apr 28 '11 at 12:53
@Mohammed It's impossible to do that. JSONP works by inserting a script element into the page: there is no programmatic notification of failures of script elements. – lonesomeday Apr 28 '11 at 13:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.