From HTML5 Mobile Boilerplate's helper.js:
(function(document){
//all stuff here
})(document);
What does this snippet do or when does it run?
|
From HTML5 Mobile Boilerplate's helper.js:
What does this snippet do or when does it run? |
|||
|
|
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. |
|||
|
|
|
This is a closure, it defines a method which takes an argument It runs as soon as it's finished evaluating - so basically straight away. |
|||
|
|
|
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. |
|||
|
|
|
If you say:
That immediately calls the function and passes |
|||
|
|