I am having an issue with the following code only loading once in IE, it loads fine repeatedly in Chrome, FF, and safari. If anyone has any suggestions I would greatly appreciate it:
<script type="text/javascript">
var c=0;
setInterval(function() {
$.ajax({
type: "GET",
url: 'randomize.php',
success: function(data) {
$('#dispeople').html(data);
}
});
},2000);
</script>