What is jQuery
jQuery is a javascript library you include in your web pages.
jQuery allows you to select elements using a CSS-style selector and do something with those elements by calling a jQuery method.
Selecting HTML elements with jQuery
$('p'); /* a jQuery object */
$()works as short invocation to thejQuery()function$()creates ajQueryobject which stores references to the selected elements