Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I use this code to get some information from twitter via their api:

        $.ajax({
            url : apiUrl,
            cache : false,
            crossDomain: true,
            dataType: "jsonp",
            success : function(html) {
                // ...
            },
            error: function(jqXHR, textStatus, errorThrown) {
                console.log(jqXHR);
            }
        });

However, if the apiUrl variable provides a correct url, this code work fine, e.i. the success object is executed, but if the url isn't correct, e.i. 404 error is returned from twitter, the error object is never executed. It doesn't log anything in console. How should I check for 404 error status in this case?

share|improve this question
This might solve the problem: stackoverflow.com/questions/4281274/jquery-ajax-404-handling – Smamatti Mar 2 '12 at 13:51
1  
give an example of an incorrect url – Jaitsu Mar 2 '12 at 13:52
stackoverflow.com/a/4803044/137972 might be relevant. – Christoffer Mar 2 '12 at 13:54

2 Answers

up vote 3 down vote accepted

From jQuery API ajax docs:

error option

Note: This handler is not called for cross-domain script and JSONP requests.

http://api.jquery.com/jQuery.ajax/

share|improve this answer
Sorry, my fault not to read this... Thanks – Levani Mar 2 '12 at 14:22

According to the docs, use statusCode setting in .ajax.

$.ajax({
  ...
  statusCode: {
    404: function(){
    }
  }
});
share|improve this answer
nop, this isn't executed as well. I'm afraid the first reply to this topic is correct... forum.jquery.com/topic/… – Levani Mar 2 '12 at 14:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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