[jQuery] Re: AJAX problem on Internet Explorer

2007-10-18 Thread HarryKC
You're welcome, I'm glad I could help. Hrvoje

[jQuery] Re: AJAX problem on Internet Explorer

2007-10-17 Thread Sharan
Thanks Hrvoje, It was the same problem as you explained and your suggestion worked really well. I used : var i = Math.round(1*Math.random()); $('.orders').load('/shopping_carts/minicart/?a='+i,function(){. Thanks again, Sharan.

[jQuery] Re: AJAX problem on Internet Explorer

2007-10-17 Thread Hrvoje
Did you try to append a random string or number to the URL, so the browser does not cache the response? example: $('.orders').load('/shopping_carts/minicart/? a='+random_string_or_number,function(){... I had a similar problem (IE did not display the change on the page) and when I added a rando