is there a way to detect whether an AJAX request has been redirected through a 304 response ? I tried an onreadystagechange with xhr.status==304 but got nothing. Are we only bound to 200 response codes ?

The issue was already raised on SO but I couldn't find any answer...

link|improve this question

feedback

1 Answer

if (xhr.status == 304){
    //do your code
}

It should 100% work

link|improve this answer
in the onreadystatechange method, right ? As stated, it is not working for me though... I get an "INVALID_STATE_ERR" instead :/ – Cystack Jul 27 '11 at 1:08
feedback

Your Answer

 
or
required, but never shown

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