Ver Mensaje Individual
  #8 (permalink)  
Antiguo 16/04/2009, 08:24
Avatar de David
David
Moderador
 
Fecha de Ingreso: abril-2005
Ubicación: In this planet
Mensajes: 15.720
Antigüedad: 19 años
Puntos: 839
Respuesta: Por qué no desabillita un radiobutton desde un checkbox???

Deja como this.checked y cambia la función por:
Código javascript:
Ver original
  1. function deshabilitarradio(valor) {
  2.     document.getElementById('cristal').disabled = valor;
  3.     document.getElementById('cristal2').disabled = valor;
  4. }
__________________
Por favor, antes de preguntar, revisa la Guía para realizar preguntas.