To hide paragraphs on a page when they are clicked:
<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(); }); $("p").hover(function () { $(this).addClass("hilite"); }, function () { $(this).removeClass("hilite"); }); }); </script> </head> <body> <body> <p>First</p> <p>Second</p> <p>3</p> </body> </html>