Ver Mensaje Individual
  #6 (permalink)  
Antiguo 25/04/2003, 15:35
Avatar de Kaopectate
Kaopectate
Colaborador
 
Fecha de Ingreso: diciembre-2001
Ubicación: Curaçao (Antillas Holandesas)
Mensajes: 3.179
Antigüedad: 22 años, 10 meses
Puntos: 38
Ahora si, prueba esto:

Código PHP:
<html>
 <
head>
  <
script>
   function 
toggle(targetId){
    
target document.alltargetId ];
    if (
target.style.display == "none"){
     
target.style.display "";
    } else {
     
target.style.display "none";
    }
   }
  
</script>
 </head>
 <body>
  <form name="frm">
   <a href="javascript:toggle('asociadas')">Usando un enlace</a><br>
   <input type="checkbox" name="buscar_en1" value="1" onclick="toggle('asociadas')">
   Usando un checkbox<br><br><br><br>
   <div id="asociadas">
    Texto que debe aparecer o desaparecer
   </div>
  </form>
 </body>
</html> 
Saludos.