i have been testing a 'jquery' script that automatically updates a page every n seconds ,it works fine in all browsers except for internet explorer it doesn't load the page 'posts.php' and it doesn't show any errors code for reference
$(document).ready(function() {
$("#responsecontainer").load("posts.php");
var refreshId = setInterval(function() {
$("#responsecontainer").load('posts.php?randval='+ Math.random());
}, 2000);
$.ajaxSetup({ cache: false });
});