Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

From HTML5 Mobile Boilerplate's helper.js:

(function(document){
    //all stuff here
})(document);

What does this snippet do or when does it run?

share|improve this question
btw, it was hard to find a different title when all i wanted to ask is 'What does this code mean?'. I had to change the 'code' to 'snippet' then add 'actually', so i could post this. – keune Sep 28 '11 at 14:32

4 Answers

up vote 1 down vote accepted

It creates a temporary, anonymous function and calls it with an argument called document. Presumably it has some local variables that it is hiding from the enclosing scope.

share|improve this answer

This is a closure, it defines a method which takes an argument document and immediately calls it with document as the parameter.

It runs as soon as it's finished evaluating - so basically straight away.

share|improve this answer

This is a javascript function that executes immediately when the browser encounters it while parsing the page. The function takes one parameter, which is the window.document property (as passed in at the bottom of the function.

share|improve this answer

If you say:

(function(var1){/*stuff*/})(var2)

That immediately calls the function and passes var2 to the function. Note that the function is anonymous and cannot be called directly. You can read about anonymous functions in general and anonymous functions in Javascript here:

http://en.wikipedia.org/wiki/Anonymous_function#JavaScript

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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