Clear IE cache when using AJAX without a cache busting querystring, but using http response header
问题 I'm having the classic IE-caches-everything-in-Ajax issue. I have a bit of data that refreshes every minute. Having researched the forums the solutions boil down to these options (http://stackoverflow.com/questions/5997857/grails-best-way-to-send-cache-headers-with-every-ajax-call): add a cache-busting token to the query string (like ?time=[timestamp]) send a HTTP response header that specifically forbids IE to cache the request use an ajax POST instead of a GET Unfortunately the obvious