As of jQuery 1.5, the ajax methods now correctly handle 304 Not Modified responses by calling the success() handler, as per the W3C spec for XMLHTTPRequest. This allows your ap
Depending on context, you could use the cache parameter to the ajax request:
cache
$.ajax({ url: ".....", dataType: "json", type: "GET", cache: false, contentType: "application/json", success: function (data, textStatus) { console.log("RECV: " + data); } });
That's working for me.