What is the meaning of symbol $ in jQuery?

javascript, jquery

Solution

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.

Problem

What does the `$` sign in jQuery stand for?

Original source