Hola,
El error es que pusiste una coma de mas:
Código javascript
:
Ver originalfunction loadLog(){
var oldscrollHeight = $("#chatbox").attr("scrollHeight") - 20;
$.ajax({
url: "log.html",
cache: false,
success: function(html){
$("#chatbox").html(html);
var newscrollHeight = $("#chatbox").attr("scrollHeight") - 20;
if(newscrollHeight > oldscrollHeight){
$("#chatbox").animate({ scrollTop: newscrollHeight }, 'normal');
}
}, // <--------- IE toma como error si te pasas una coma.
});
}
Suerte
Salu2