
26/06/2010, 12:21
|
 | Colaborador | | Fecha de Ingreso: junio-2010
Mensajes: 2.062
Antigüedad: 14 años, 9 meses Puntos: 310 | |
Respuesta: Como inhabilitar CAMBIO de OPTION en SELECT? (pero enviar VALOR !!)
Código HTML:
Ver original<form method="get" action=''> <select name="zzz" onchange='noCambia(this);'> <input type="submit" value='Enviar' />
Código Javascript :
Ver originalfunction noCambia(select){ if(select.selectedIndex!=1){ select.selectedIndex=1; } }
Saludos (: |