Ver Mensaje Individual
  #2 (permalink)  
Antiguo 10/03/2010, 06:50
Avatar de maycolalvarez
maycolalvarez
Colaborador
 
Fecha de Ingreso: julio-2008
Ubicación: Caracas
Mensajes: 12.120
Antigüedad: 15 años, 9 meses
Puntos: 1532
Respuesta: Redireccionar tras cuenta regresiva

ves esta línea: document.formulario.submit(); esta enviando el formulario formulario, por ende redirecciona al action del mismo

PD: al form le falta el id y el method="POST" o GET, si es GET utilízalo así:

Código HTML:
Ver original
  1. <form name="formulario" id="formulario" action="index.php" method="get" >
  2.     <input type="text" name="reloj" />
  3.     <input type="hidden" name="id" value="2" />
  4. </form>

Última edición por maycolalvarez; 10/03/2010 a las 06:55