I don’t mean to support IE everytime I create some pages (don’t even think about Safari, what was the other one…oprah? again no offense. BTW, opera is great browser which obeys the standards and always asks people to love it). Ok, it was just thought. Many people(surprisingly!!) still use IE, or even earlier versions of IE, and they blame me because my thing breaks gracefully on IE.
Most people already know that IE caches ajax query, but there are few workarounds to get it working properly on IE. My blog is solely for my dev log so that I do not make the same exceptions(I do not use the term ‘error’ since my exceptions are usually fatal) next time.
1)not so great but easy fix. Add timestamp to url.
$.getJSON(“/some/”+value+”/”+Math.round(new Date().getTime()), function(){..}
2) $.ajax with cache: false


