I am currently working through this tutorial: Getting Started with jQuery
For the two examples below:
$(\"#orderedlist\").find(\"li\").each(function
$() is the jQuery constructor function.
$()
this is a reference to the DOM element of invocation.
this
So basically, in $(this), you are just passing the this in $() as a parameter so that you could call jQuery methods and functions.
$(this)