In IE (v: 7.0.5730.11) all GET request are cached. Go figure why.
In order to solve this issue, you can either switch to POST, or add a time stamp to any url you send.
function uncache (url){
return url + “&uncache=” + new Date().getTime();
}
August 27, 2007 by Tzury Bar Yochay
In IE (v: 7.0.5730.11) all GET request are cached. Go figure why.
In order to solve this issue, you can either switch to POST, or add a time stamp to any url you send.
function uncache (url){
return url + “&uncache=” + new Date().getTime();
}
Thanks! This neat trick saved me from rewriting a script for a webshop I just built! I knew IE sucks, but didn’t have any idea they’ve gone this far to make the programmer’s life a hell :) j/k
Thanks, this is very nice trick. I have spent many hours for this problem.