Tema: Multiselect
Ver Mensaje Individual
  #2 (permalink)  
Antiguo 20/06/2003, 05:05
Avatar de tunait
tunait
Moderadora
 
Fecha de Ingreso: agosto-2001
Ubicación: Terok Nor
Mensajes: 16.805
Antigüedad: 23 años, 6 meses
Puntos: 381
Buenas,

a ver si esto te sirve de orientación

<form name="formu">
<select name="pepe" size="1">
<option>a</option>
<option>b</option>
<option>c</option>
<option>d</option>
<option>e</option>
</select>
</form>
<p><a href="#" onclick="document.formu.pepe.size = 4;document.formu.pepe.multiple=true;return false">Cambiar</a>
<a href="#" onclick="document.formu.pepe.disabled = true;return false">Deshabilitar</a> </p>

Saludos