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
It just fills $this variable with $(this), so you do not have to lookup for $(this) element every call. It has better performance
var $this = $(this);