Ver Mensaje Individual
  #3 (permalink)  
Antiguo 19/06/2008, 10:21
Avatar de Chuty
Chuty
 
Fecha de Ingreso: noviembre-2002
Ubicación: el bar de la esquina
Mensajes: 609
Antigüedad: 22 años, 2 meses
Puntos: 2
Respuesta: Habilitar y deshabilitar Radio Button

Gracias JavierB
Pero tengo una duda
Código PHP:
<script type="text/javascript">
function 
deshabilita() {
  for (
i=0rad document.radio1.rad1[i]; i++)
    
rad.disabled false;
  if (
false != truedocument.radio1.rad1[1].checked true;
}
</script>
<form name="radio1"> 
<input type="radio" checked name="rad0" onclick = "deshabilita(false)"> Central
<input type="radio" name="rad0" onclick = "deshabilita(true)"> Sucursal<br />

<input type="radio" checked name="rad1" > ONL
<input type="radio" name="rad1" > HST
</form> 
no me deshabilita el ONL, esta bien como lo arme.
saludos y nuevamente gracias