What is jQuery(document) vs. $(document)

javascript, jquery

Solution

There is no difference. $ is shorthand for jQuery. Sometimes $ is disabled as it may conflict with other Javascript libraries you are using. It is otherwise identical.

Problem

I don't get what jQuery(document) is here. I thought you always used $(document) see here in his examples: http://sorgalla.com/projects/jcarousel/

Original source