I have searched for this before posting..
I have a page in my site where I need to refresh the data every X seconds.
I am using
`
var s= setInterval(function()
{
$('#responsecontainer').fadeOut("slow").load('table_data.php?pair_id=<?echo $pair_id?>').fadeIn("slow");
}, 5000);
var s= setInterval(function()
{
$('#responsecontainer2').fadeOut("fast").load('last_modifed.php').fadeIn("fast");
}, 5000);
`
It works fine in FF and Chrome but not in IE8.
I don’t mind to see that it loads the data every time, but it doesn’t even do tha, I tried
writing
$('#responsecontainer').load('table_data.php');
and it loads old data from the file even though I change it.
The page is here (it’s in hebrew, btw)
any help??
Your
table_data.phppage is returning304 Not Modified, meaning you have it set to cache. Add headers to that file to prevent cacheing and it should work fine.