Ver Mensaje Individual
  #5 (permalink)  
Antiguo 06/12/2006, 09:17
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 11 meses
Puntos: 772
Re: problemas con lista, checkbox y acordeon

Hola rrodriguez1310

Pon así el checkbox:

<input type="checkbox" name="checkbox5" value="checkbox" onclick="habilitar('select3',this.checked);" />

y así el código:

function habilitar(nombre,chk) {
document.getElementById(nombre).disabled = !chk;
}
</script>

Saludos,