Ver Mensaje Individual
  #3 (permalink)  
Antiguo 21/01/2011, 07:42
Yoi
 
Fecha de Ingreso: noviembre-2008
Mensajes: 144
Antigüedad: 16 años
Puntos: 2
Respuesta: Duda sobre .toggle()

ponle al div el style asi:
<div style='display:none;'>contenido oculto</div>
<script> $("button").click(function () { $("div").slideDown("slow"); }); </script>