$this vs $(this) in jQuery

$this is just an ordinary variable. The $ character is a valid character in variable names, so $this acts the same as any other non-reserved variable name. It’s functionally identical to calling a variable JellyBean.

Leave a Comment