Hola Amigos estoy teniendo un problema con ie
me pone el siguiente error
Se esperaba un identificador ,una cadena o un numero
en la linea 34
mi codigo es este:
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
}
},
});
}
setInterval (loadLog, 2500);
});
seguro me esta faltando una coma o una llave pero no se en donde
agradezco mucho su ayuda
Saludos