Ver Mensaje Individual
  #2 (permalink)  
Antiguo 17/10/2004, 16:09
Avatar de Kaopectate
Kaopectate
Colaborador
 
Fecha de Ingreso: diciembre-2001
Ubicación: Curaçao (Antillas Holandesas)
Mensajes: 3.179
Antigüedad: 23 años
Puntos: 38
Hola Fociños.

Te pongo un ejemplo a ver si te sirve:

Código PHP:
<html>
 <
head>
  <
script language='JavaScript'>

   function 
validar(){
    
with (document.frm){
     if (
chk.checked)
      
submit();
     else {
      
alert('Si no marcas la cajita no te dejo pasar!!!');
      
chk.focus();
     }
    }
   }

  
</script>
 </head>
 <body>
  <form name='frm' action='siguiente.htm'>
   Texto
   <input type='text' name='t1'><br>
   Otro texto
   <input type='text' name='t2'><br>
   <input type='checkbox' name='chk'>Cajita<br>
   <input type='button' value='Enviar' onclick='validar()'>
  </form>
 </body>
</html> 
Saludos.