I have a small problem that I don\'t know how to deal with.
I\'ve written some jQuery post/gets which work fine in FF, Opera and Chrome. But when run from explorer (any
Try setting the cache: false parameter to your AJAX requests as browsers might cache GET requests:
cache: false
$.ajax({ url: '/foo', type: 'GET', cache: false, success: function(result) { // TODO: update the DOM with the results } });