up vote 2 down vote favorite
1
share [g+] share [fb]

I am currently doing the same ajax request using jQuery every 2sec. For some reason, on IE8 it only work the first time. Each following request automatically seems to go to the onSuccess function, with the same result as the first request.

The same code work perfeclty on FF3 and Chrome.

Is anybody aware of that bug and how to hack around it? Or am I simply doing something wrong?

link|improve this question

Can you post some code please? It's hard for us to see a problem without it. – Damien Jul 27 '09 at 20:04
feedback

2 Answers

up vote 6 down vote accepted

IE has a caching feature... it's possible that it has just cached your request. Make sure you append something like a random number to your query string, like so:

var url = "/yoururl.html";
url = url + "&random=" + Math.random();
link|improve this answer
That worked perfectly. Thank you for you fast answer Jason. – Zwik Jul 27 '09 at 20:39
if this helped you, plz accept as answer! thx – Jason Jul 27 '09 at 20:40
sry ^^, (I'm new here) – Zwik Jul 27 '09 at 20:42
no worries :) we <3 n00bs here – Jason Jul 27 '09 at 20:44
3  
An alternative solution is to simply use POST; POST requests shall not be cached (sayeth the spec). – Cide Jul 27 '09 at 20:58
feedback

Just so you know $.ajax has a cache attribute that, when set to false does exactly what Jason is doing, namely, includes a random parameter that means no requests get cached. It's a little more elegant than doing it yourself

link|improve this answer
Oh! really good to know hehe. Thank you brad :) – Zwik Aug 10 '10 at 12:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.