This does not mean anything special.
But since $ allowed in identifier names, many Javascript libraries use $ as the "central" interface for them, or at least as a shortcut to access their functions.
For example, if you use jQuery and you say $("div") , this is a call to the $ function with the argument "div". When you say $.post() , it calls the post method on the $ object (Javascript is good in that functions are first-class objects).
Dean Harding Jun 24 '10 at 6:06 2010-06-24 06:06
source share