Ver Mensaje Individual
  #4 (permalink)  
Antiguo 15/01/2006, 13:04
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 10 meses
Puntos: 772
Hola de nuevo.

Prueba este otro código:
Código PHP:
<html>
<
head>
<
script type="text/javascript">
function 
habilitar(chk) {
  
document.forms[0].aceptar.disabled = !chk.checked;
  
chk.form.action = (chk.checked) ? 'tupagina.php' '';
}
</script>
</head>
<body>
<form action="">
<input type="checkbox" onclick = "habilitar(this)">
<input type="text" />
<input type="submit" name="aceptar" disabled="disabled"/>
</form>
</body>
</html> 
Saludos,