Click to slide up : slideUp « jQuery « JavaScript DHTML






Click to slide up

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



        });
    </script>
  </head>
  <body>
    <body>
       <p>asdf</p>
       <p>asdf</p>
    </body>
</html>

   
    
    
    
  








Related examples in the same category

1.Slide up a DIV tag
2.Slide up callback
3.Slide up fast
4.Slide up form controls
5.Slide up in milliseconds
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