set interval & .load work in all but ie

set interval & .load work in all but ie

My code works on the initial load of ie.  Which means .load does load the two files.   However, it only does it once, in set interval it doesn't refresh the div with the updated content from the file.  It works in every other browser except ie.

Any thoughts?


Thanks,
var notify = window.setInterval(function() { 
$("#notify").load('test.html').fadeIn("slow");
} , 1000);
;
//usersonline ajax request
var oncampus = window.setInterval(function() { 
$('.users_online').load('oncampus.php');
}, 1000);