In jQuery, what is the difference between $ and $.? Please provide a practical explanation if possible.
$
$.
$ is a reference (or synonym, if you want an analogy) to the global jQuery object. $. calls a static method of the jQuery object, where $() creates a new instance of the jQuery object.
jQuery
$()