var interval = window.setInterval("Ajax()", 1000);
function Ajax() {
$.ajax({
url: "atualizaMsg.ashx",
type: "GET",
success: function(data) {
// after processing your stuff
$("#msgChat").html(data);
// make sure the next request is linear
},
fail: function() { /* handle your failed reqeust */ }
});
} Este problema ocrre somente no I8, que novidade não é? rsrs. Quando entra na página ele atualiza certinho, porem quando mando uma mensagem para o chat, ele não atualiza ! Ele só atualiza se eu configurar em -> Ferramentas de Desenvolvedores -> Cache -> Sempre Atualizar o Servidor , ai sim o IE8 funciona. alguém sabe o porque disso ?