Ver Mensaje Individual
  #2 (permalink)  
Antiguo 18/02/2007, 06:06
MikiBroki
 
Fecha de Ingreso: abril-2002
Mensajes: 1.014
Antigüedad: 22 años, 10 meses
Puntos: 8
Re: Problema al duplicar contador

Prueba algo así:

Código:
<html>
<head>
<script language="javaScript">
window.onload = function()
{
setInterval( mueveReloj1, 50);
setInterval( mueveReloj2, 50);
}

function mueveReloj1() { ... }
function mueveReloj2() { ... }
function
</script>
</head>

<body>
<form name="form_reloj2">
<input name="reloj1" type="text" id="reloj1" />
<input name="reloj2" type="text" id="reloj2" />
</form> 
</body>
</html>
(El '50' está en milisegundos)