Dynamic Web Project for JQuery Reference Sample.
jQuery Syntax
A $ sign to define/access jQuery.
A (selector) to "query (or find)" HTML elements.
A jQuery action() to be performed on the element(s)
<script>
$(this).hide();
$("p").hide();
$(".test").hide();
</script>