We would like to know how to use hide().
<html>
<head>
<script type="text/javascript" src='http://code.jquery.com/jquery-1.5.2.js'></script>
<script type="text/javascript">
$(document).ready(function(){<!-- w w w.j a v a 2 s. c om-->
$("p").hide();
});
</script>
</head>
<body>
<p class="myClass">p</p>
<span class="myClass">span class="myClass"</span>
</body>
</html>
The code above is rendered as follows: