<script type="text/javascript">
$(document).ready(function(){
$(document).everyTime(3000, load);
function load() {
$.ajax({
url: \'c2_luesisalto.php\',
success: function(data) {
$(\'p2\').append(data);
}
});
}
});
</script>
That one brings chat messages in Opera, Firefox and Chrome without problem, but in IE not.
Changed the everytime to:
var int=self.setInterval(function(){load()},3000);
but did not help.
Anyone knows how to get that to work in IE?
Thanks in advance.