I am making a portal page for a project, and a div contained is refreshed every 1000 seconds.
The problem I am having though, is that the content that is being pulled in is always cached, so refreshing has no effect, the user has to do a hard refresh.
**This only occurs in Internet Explorer**
Here's the javascript code I used to refresh and load the div:
var auto_refresh = setInterval(
function () {
$('#news').load('apps/news.php').fadeIn("slow");
}, 1000);
And as you can see, the data is contained in a PHP file.
contents of news.php: