vote up 2 vote down star

Hey,

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?

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

2 Answers

vote up 5 vote down check

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|flag
That worked perfectly. Thank you for you fast answer Jason. – Zwik Jul 27 at 20:39
if this helped you, plz accept as answer! thx – Jason Jul 27 at 20:40
sry ^^, (I'm new here) – Zwik Jul 27 at 20:42
no worries :) we <3 n00bs here – Jason Jul 27 at 20:44
2  
An alternative solution is to simply use POST; POST requests shall not be cached (sayeth the spec). – Cide Jul 27 at 20:58
vote up 0 vote down

Jason's answer worked perfectly.

here is an exemple of the data I added to my ajax request so that it work periodically with IE8 :

data:
{
	nbRandom: Math.random()
},
link|flag
fyi (since you're new), something like this would go in the comments under the accepted answer, but i guess for now you can leave this as is – Jason Jul 27 at 20:46

Your Answer

Get an OpenID
or

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