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.

What is the difference between these two.

  1. $(document).ready(function(){ ... });

  2. (function(){ ... })();

Are these both functions called at the same time? I know, document.ready will be triggered when the entire HTML page is rendered by the browser but what about 2nd function (self calling anonymous function). Does it wait for browser to complete rendering the page or it is called whenever it is encountered?

share|improve this question
4  
For what it's worth, $(function() {}); is equivalent to $(document).ready(function() {}); – Ian Henry Jul 15 '10 at 20:04
The self calling anonymous function will be executed whenever it is encountered. Also, actually rendering the document on screen and creating the object model in memory are unrelated. – Anurag Jul 15 '10 at 20:07

5 Answers

  • $(document).ready(function(){ ... }); or short $(function(){...});

    This Function is called when the DOM is ready which means, you can start to query elements for instance. .ready() will use different ways on different browsers to make sure that the DOM really IS ready.

  • (function(){ ... })();

    That is nothing else than a function that invokes itself as soon as possible when the browser is interpreting your ecma-/javascript. Therefor, its very unlikely that you can successfully act on DOM elements here.

share|improve this answer
3  
@phpGeek you are the opposite of right – NimChimpsky Jun 28 '12 at 8:56
@NimChimpsky I confused (function(){}); with $(function(){}). You are the opposite of the wrong ;) – phpGeek Jun 28 '12 at 10:34
I'm confused, with respect to (function(){ ... })(); doesn't any JS code run as soon as possible? If you had say, an alert() within in the SIAF or outside of it, wouldn't the effect be the same? – skube Apr 18 at 13:25

(function(){...})(); will be executed as soon as it is encountered in the Javascript.

$(document).ready() will be executed once the document is loaded. $(function(){...}); is a shortcut for $(document).ready() and does the exact same thing.

share|improve this answer

document.ready run after DOM is "constructed". Self-invoking functions runs instantly - if inserted into <head>, before DOM is constructed.

share|improve this answer
1  
+1 to counter a needless downvote. However, there is a slight problem in your answer. Self-invoking function will execute wherever it is found when parsing, and doesn't necessarily have to be inside the <head>, and the rules are no different after the initial DOM has been constructed. – Anurag Jul 15 '10 at 20:14
  1. $(document).ready(function() { ... }); simply binds that function to the ready event of the document, so, as you said, when the document loads, the event triggers.

  2. (function($) { ... })(jQuery); is actually a construct of Javascript, and all that piece of code does is pass the jQuery object into function($) as a parameter and runs the function, so inside that function, $ always refers to the jQuery object. This can help resolve namespacing conflicts, etc.

So #1 is executed when the document is loaded, while #2 is run immediately, with the jQuery object named $ as shorthand.

share|improve this answer

So why is this fiddle working then ? I am trying to create an example in which I show how DOM manipulation can fail if used in a self-calling anonymous function instead of inside DOM ready event.

http://jsfiddle.net/sandeepkram/2fFgj/2/

<!DOCTYPE HTML>
<HTML>
<HEAD>
</HEAD>
<BODY>
    <div id="divTest"></div>
</BODY>

</HTML>

And my JS Code in fiddler -

/*$(function(){
//alert('This is exectued only after DOM is ready');
if(!tTempVar)
    tTempVar='DOM Ready first';

});
*/

(function(){
if($("#divTest"))
alert('Div found');   

})();
share|improve this answer
Guys... any help on this ? – Sandeep Jan 28 at 7:16
You forgot the $, should be $(function() {})(); – Duncan Mar 9 at 17:54
Nopes.Just check out the top of this question. They are two different things I think. – Sandeep Mar 13 at 5:39
They are different. $(function () {})() for jQuery is a short hand for $(document).ready(function() {})(). Where as (function () {})() creates a closure, and executes. But the problem with your code is that your not waiting for the DOM to be ready. Now your saying that it doesn't need to wait, but in fact your DOM is probably ready in your jsFiddle example, and then you're executing your javascript. jsFiddle is probably executing the javascript after the DOM is ready. --- Another alternative is that you place the javascript as the last element in the dom. – Duncan Mar 14 at 23:15

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.