What is the meaning of symbol $ in jQuery?

The jQuery object 🙂

From the jQuery documentation:

By default, jQuery uses “$” as a shortcut for “jQuery”

So, using $("#id") or jQuery("#id") is the same.

Leave a Comment