Slide down slowly : slideDown « jQuery « JavaScript DHTML






Slide down slowly

    

<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){
                
                $("p").click(function () {
                    $("p").hide();

                    $("p").slideDown("slow");
                });
        });
    </script>
  </head>
  <body>
    <body>
        <p>Hello</p>
    </body>
</html>

   
    
    
    
  








Related examples in the same category

1.Hide and Slide down
2.Slide down and set focus
3.Slide down fast
4.Slide down form fields
5.Slide down in milliseconds
6.Slide to show para
7.slideDown(speed, callback): Only the height is adjusted for this animation