Ver Mensaje Individual
  #2 (permalink)  
Antiguo 15/05/2005, 02:56
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 3 meses
Puntos: 772
Hola tork

Aquí tienes el código un poco modificado:

function typeit(){
typing.insertAdjacentText("beforeEnd",mytext.charA t(it))
if (it<mytext.length-1){
it++
setTimeout("typeit()",100)
}
else {
typing.innerHTML='';
it=0;
setTimeout("typeit()",100) }
}
if (document.all)
window.onload=initialize
</script>

Saludos,