vote up 1 vote down star
1

Can someone explain me the syntax below line 1? I am OK with js and function references, but this code looks a bit confusing. E.g. is it function declaration and execution?

jQuery.noConflict();
(function($) { 
  $(function() {
    // more code using $ as alias to jQuery
  });
})(jQuery);
// other code using $ as an alias to the other library
flag

79% accept rate

1 Answer

vote up 2 vote down check

Exactly.
You create an anonymous function which takes one parameter, and immediately invoke it with the parameter jQuery.

link|flag
Thanks for clarification. For some reason declaration and execution in my mind counln't co-exist. – PHP thinker Nov 2 at 12:57

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.