How to check if jQuery.ajax() request header Status is "304 Not Modified"?

jqXHR.status usually returns 200, even when requested header is "304 Not Modified".

ifModified:true does not help a lot because it breaks XHR data request.

link|improve this question

74% accept rate
feedback

2 Answers

Maybe try this?

$.ajax({
    url: 'your-url',
    dataType: 'script',
    complete: function(xhr) { 
        if (xhr.status == 304) return;
        // or better: if (xhr.status != 200) return;
        // your code goes here
    }
});
link|improve this answer
It does not work. – Binyamin Mar 2 '11 at 21:48
feedback

open your browsers inspector and it will show you info on the ajax request, including the status.

for chrome, right click and choose inspect element, then go to the Network tab.

for firefox, just use firebug and follow the same steps.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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