Hides all paragraphs then the link on click.
<html> <head> <script type="text/javascript" src="js/jquery-1.3.2.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("p").hide(); }); </script> </head> <body> <body> <p class="myClass">p</p> <span class="myClass">span class="myClass"</span> </body> </html>