jQuery's mantra is " Write less, do more".
I fully support this good idea so I would be exploring more jQuery techniques.
For example, to select an element using its "id" attribute in JavaScript:
document.getElementByID('joy');
there is a high change that I might make a spelling mistake which would cause an error to my programme.
However for jQuery:
$('#joy');
short and simple:)