I would like to figure out the difference between using $() and $. from other developers.
As far as my understanding goes, $() refers to objects within the DOM, but I am not 100% clear as to how the $. works. I have used the $. format before, but never understood how it works.
For example:
$.each(element, function() {}); or $.fn etc...
It would be nice to shed some light and clarity on this topic.