Ver Mensaje Individual
  #1  
Antiguo 31-05-2006
Avatar de Diavlo
Diavlo Diavlo is offline
Miembro
 
Registrado: dic 2005
Posts: 53
Reputación: 19
Diavlo Va por buen camino
Error en window.setTimeOut()

Código:
<script language="JavaScript">
  var texto = "  Texto A Mostrar  ";
  var tam = texto.length;
  function mover(){
    x = texto.charAt(0);
    texto = texto.substring(1,tam)+x;
    window.setTimeOut(mover(),1000);
  }
</script>
 
 
<body onload="mover()>
Por q me sale el siguiente error???

stack overflow at line: 0
Responder Con Cita