Slide down in milliseconds : slideDown « jQuery « JavaScript DHTML






Slide down in milliseconds

    
<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(10000);
                });
        });
    </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 slowly
6.Slide to show para
7.slideDown(speed, callback): Only the height is adjusted for this animation