Ver Mensaje Individual
  #4 (permalink)  
Antiguo 08/11/2010, 08:10
andruxand
 
Fecha de Ingreso: marzo-2010
Ubicación: Cali
Mensajes: 203
Antigüedad: 14 años, 8 meses
Puntos: 5
Respuesta: ocultar checkbox automaticamente y definitivo

hola, prueba con esto:

Código Javascript:
Ver original
  1. function estado()
  2. {
  3. if (document.frm.box1.checked)
  4. {
  5. document.getElementById("box1").disabled= true;
  6. }
  7.  
  8. if (document.frm.box2.checked)
  9. {
  10. document.getElementById("box2").disabled= true;
  11. }
  12. }