11/04/2008, 18:34
|
| | | Fecha de Ingreso: abril-2008 Ubicación: Veracruz, México
Mensajes: 73
Antigüedad: 16 años, 7 meses Puntos: 1 | |
Re: habilitar campo de texto con select Pues se me ocurre que a la hora de mandar a deshabilitar el segundo select obtengas el input y lo elimines de la forma.
a=document.getElementsByTagName("input")
elemento.removeChild(a)
o tambien cambiando el tipo del input de text a hide así
a=document.getElementByTagName("Input");
a[0].setAttribute('type','hide');
Espero te sirva.. Saludos. |