Ver Mensaje Individual
  #2 (permalink)  
Antiguo 22/08/2003, 15:20
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 Bhonox.

Prueba asi:

Código PHP:
<html>
 <
head>
  <
script language="JavaScript">
   function 
cambia(){
    
with (document.frm){
     
bChecked box.checked;
     if (
bChecked){
      
send.value "mas lineas";
      
lineas.disabled false;
     } else {
      
send.value "enviar";
      
lineas.disabled true;
     }
    }
   }
  
</script>
 </head>
 <body>
  <form method="get" action="index.php" name="frm">
   <input type="checkbox" name="box" onclick="cambia()">
   <input type="text" name="lineas" disabled>
   <input type="submit" name="send" value="enviar">
  </form>
 </body>
</html> 
Saludos.