I\'ve seen some discussions on SO regarding $(this) vs $this in jQuery, and they make sense to me. (See discussion here for an example.)
$(this)
$this
Bu
$this = $(this)
which means that you are assigning the current object to a variable named $this. It is not a keyword.
It is just a variable name.