Trucos

Cuenta regresiva en Javascript

Anexo el siguiente código para insertar en nuestras páginas web un contador regresivo, que incluye tanto horas, minutos y segundos. <script language="javascript"> var tiempo = 10; function cuentaRegresiva(){ if (tiempo > 0){ tiempo– } else{ tiempo=10 } document.fcuentareg.tiempoact.value=tiempo setTimeout("cuentaRegresiva()",1000) } </script> Agregamos el evento siguiente: <body onload="cuentaRegresiva()"> <form name="fcuentareg"> <input type="text" name="tiempoact"> </form> El formato

Cuenta regresiva en Javascript Leer más »