(function($, window, undefined){
... jquery code...
})(jQuery, window);
What does it really mean? Does it also mean $(document).ready()? Or just two different things?
What does it really mean? Does it also mean |
||||
|
There are already two answers but this is my guess on the missing end of the code:
Note: three parameters are expected but two are supplied. What it basically does is:
This pattern is known as immediately invoked function, or immediate function for short, or self-invoking anonymous function, or some other names. The basic idea is that:
or:
means the same as:
but without the need to give any name to your function and pollute the namespace. Going back to your question, this doesn't mean This example may actually explain it better, even if it isn't used anywhere:
Now instead of As a side note I might add that thanks to this pattern you don't actually need variable declarations in the language but only function arguments. Instead of:
you could use:
and indeed a function like this:
is exactly equivalent to:
because of the hoisting mechanism in JavaScript that would make the |
|||||||||||||
|
is different than
Paul Irish has a good video on 10 Things I Learned from the jQuery Source at 1:30 in he talks about the jquery source's self executing anonymous function and what the arguments mean |
|||
|
|
|
Like that it doesn't mean much at all (in addition a closing
This puts the code inside a new scope, so you can for example define variables without messing with the outside scope. It also allows that you pass different things to the function, without having to change the code. For example if you use different JavaScript frameworks, and |
|||
|
|
|
I'm guessing the code actually looks like this:
Note the parenthesis at the end. If this is the case, what's going on here is a self-executing anonymous function. The point of doing this is that any local variables or functions defined inside of that anonymous function will not pollute the global namespace. |
|||||||||||
|
|
@rsp has a great answer for this specific question. For general background on this pattern also see http://www.adequatelygood.com/2010/3/JavaScript-Module-Pattern-In-Depth. |
|||
|
|
())at the end. – Felix Kling Mar 14 '11 at 23:06)();– tylermwashburn Mar 14 '11 at 23:24(function(){}());– Felix Kling Mar 14 '11 at 23:29