Ver Mensaje Individual
  #8 (permalink)  
Antiguo 02/07/2007, 17:27
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años, 8 meses
Puntos: 2135
Re: Deshabilitar botones

Prueba esto:
Código HTML:
<form>
<input type="radio" name="rad" onclick = "document.getElementById('elBoton').disabled = false;" />
<input type="radio" name="rad" onclick = "document.getElementById('elBoton').disabled = false; />
<input type="button" id="elBoton" value="Algo" name="boton" disabled="disabled" />
</form>