It\'s well known that Internet Explorer aggressively caches ajax calls whereas all the other browsers grab the data fresh every time. This is usually bad: I\'ve never enco
We use jQuery for all ajax calls so we add this block to our main.gsp (top-level layout):
jQuery(document).ready(function() { $.ajaxSetup({ cache:false }); });
Also answered here