Skip to content

Comment on Most Pressed Keys and Programming Syntaxesparent

Comments

In the codebase here we use 'jQuery' instead of '$'.

Ditto. If you pull in multiple plugins or additional frameworks (for some reason, we mix YUI with jquery), the $() notation can become broken, and you have to explicitly call jQuery().

Unless you put all your code in a big closure to make a correct $ in function scope:

  (function ($)
  {
  
  }) (jQuery);
AboutSource Built by g1lg1l

Hackerly is an independent reader for Hacker News, built on the public HN API. Not affiliated with Y Combinator.