Ver Mensaje Individual
  #5 (permalink)  
Antiguo 31/05/2006, 10:55
soonye
 
Fecha de Ingreso: octubre-2005
Mensajes: 85
Antigüedad: 19 años, 2 meses
Puntos: 0
bueno por si aca, pero hay ke analizar mas

<html>
<head>
<title>Documento sin t&iacute;tulo</title>
<script language="javascript">
function Bloquear(){
if(document.form1.chkcli.checked){
document.form1.clientes.disabled=true;
}else{
document.form1.clientes.disabled=false;
}
}
</script>
</head>

<body>
<form id="form1" name="form1" method="post" action="">
<p>
<input type="checkbox" name="chkcli" value="checkbox" onclick="Bloquear();"/ checked>
</p>
<p>
<select disabled name="clientes">
<option>d</option>
<option>d</option>
<option>d</option>
<option>f</option>
</select>
</p>
</form>
</body>
</html>