LISTO!!!
el error estaba aca
Código Javascript
:
Ver original$(document).ready(function(){
$("#submitmsg").click(function(){
var clientmsg = $("#usermsg").val();
$.post("post.php",{text:clientmsg});
$("#usermsg").val("");
$("#usermsg").focus();
return false
});
function loadLog(){
var oldscrollHeight = $("#chatbox")[0].scrollHeight;
$.ajax({
url: "log.html",
cache: false,
success: function(html){
$("#chatbox").html(html); //Insert chat log into the #chatbox div
var newscrollHeight = $("#chatbox")[0].scrollHeight;
if(newscrollHeight > oldscrollHeight){
$("#chatbox").animate({ scrollTop: newscrollHeight }, 'normal'); //Autoscroll to bottom of div
}
}, //[B][/B]esta coma esta demas
});
}
setInterval (loadLog, 2500);
});
saludos y gracias