Slide up in milliseconds : slideUp « jQuery « JavaScript DHTML






Slide up in milliseconds

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

               $("div").click(function () {
                    $("div").slideUp(2000);
               });

        });
    </script>

  </head>
  <body>
    <body>
          <div>Click me</div>


    </body>
</html>

   
    
    
    
  








Related examples in the same category

1.Click to slide up
2.Slide up a DIV tag
3.Slide up callback
4.Slide up fast
5.Slide up form controls
6.Slide up slowly
7.Animates all divs to slide up, completing the animation within 400 milliseconds.
8.Animates all form controls to slide up
9.slideUp(speed, callback): Only the height is adjusted for this animation