Ver Mensaje Individual
  #8 (permalink)  
Antiguo 01/09/2013, 12:44
omarinfinito
 
Fecha de Ingreso: enero-2012
Ubicación: <?php echo"Los teques"; ?>/////estado miranda
Mensajes: 196
Antigüedad: 13 años
Puntos: 9
Respuesta: Mejor manera para aparecer y desaparecer.

Probe el codigo de Erick así y me funciono

Código HTML:
Ver original
  1. function oculta_muestra(){
  2.     if (document.getElementById("Div").style.overflow=='hidden'){
  3.         document.getElementById("Div").style.overflow='auto';
  4.         document.getElementById("A").innerHTML = 'Ocultar'
  5.     }else{
  6.         document.getElementById("Div").style.overflow='hidden';
  7.         document.getElementById("A").innerHTML = 'Mostrar'
  8.     }
  9. }
  10. <a href="javascript:oculta_muestra();" id="A">Ocultar</a>
  11. <div id="Div" style="width:90;height:20;overflow:auto">Un Texto<br>Otro Texto</br></div>