I searched for this before posting. I have a page on my site where I need to update data every X seconds. i use `
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 seeing that he downloads data every time, but he doesnβt even do it, I tried the letter
$('#responsecontainer').load('table_data.php');
and it loads the old data from the file, even if I change it.
Page here (is it in Hebrew, by the way) any help?
source share