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.
|
How to check if jQuery.ajax() request header Status is "304 Not Modified"?
| |||
|
feedback
|
|
Maybe try this?
| |||
|
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. | |||
|
feedback
|