Hide in millisecond : hide « jQuery « JavaScript DHTML






Hide in millisecond

    

<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).hide(2000);
                  return true;
                });





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

   
    
    
    
  








Related examples in the same category

1.Click to hide
2.Hide a tag
3.Hide and remove
4.Hide fast
5.Animates all shown paragraphs to hide slowly, completing the animation within 600 milliseconds.