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.

Is the following shorthand for $(document).ready?

(function($){

//some code

})(jQuery);

I see this pattern used a lot, but I'm unable to find any reference to it. If it is shorthand for $(document).ready(), is there any particular reason it might not work? In my tests it seems to always fire before the ready event.

share|improve this question

5 Answers

up vote 49 down vote accepted

The shorthand for $(document).ready(handler) is $(handler) (where handler is a function). See here.

The code in your question has nothing to do with .ready(). Rather, it is a self-invoking anonymous function with the jQuery object as its argument. Its purpose is to restrict the scope of at least the $ variable to its own block so it doesn't cause conflicts. You typically see the pattern used by jQuery plugins to ensure that $ == jQuery.

share|improve this answer
Ah, that makes sense. Thanks for the explanation. – Mark Brown May 14 '11 at 19:16
amazing +1 for $(handler) – Faizan Mar 12 at 5:12

The shorthand is:

$(function() {
    // Code here
});
share|improve this answer
7  
The first argument is $. Might want to add that in. It's useful for jQuery(function($, undefined) {}); – Raynos May 14 '11 at 19:06
3  
@raynos Its not required. the above code works fine as an alias for $(document).ready(function(){ }); – Kyle Trauberman May 14 '11 at 19:10
1  
It's just useful to know that you get $ for free as the first argument. – Raynos May 14 '11 at 19:21
2  
Not quite sure why Raynos isn't getting the approval here, but thanks Raynos, that's a very useful thing to know. I had an anon func that was performing the jQuery->$ local rename. Getting it like this is muuuch easier and cleaner. – Travis Sep 17 '12 at 0:04
1  
@Kyle Trauberman: People don't like to read prose. (Referring to my own long-winded answer of course.) – BoltClock Mar 29 at 16:23
show 2 more comments

The correct shorthand is this:

$(function() {
    // this behaves as if within document.ready
});

(function($){

//some code

})(jQuery);

The code you posted creates an anonymous function and executes it immediately with jQuery being passed in as the arg $. All if effectively does it take the code inside the function and execute it like normal, since $ is already an alias for jQuery. :D

share|improve this answer

This is not a shorthand for $(document).ready().

The code you posted boxes the inside code and makes jQuery available as $ without polluting the global namespace. This can be used when you want to use both prototype and jQuery on one page.

Documented here: http://docs.jquery.com/Using_jQuery_with_Other_Libraries#Referencing_Magic_-_Shortcuts_for_jQuery

share|improve this answer
1  
Thanks for the heads-up, confusion deleted. – mu is too short May 14 '11 at 19:14

These specific lines are the usual wrapper for jQuery plugins:

"...to make sure that your plugin doesn't collide with other libraries that might use the dollar sign, it's a best practice to pass jQuery to a self executing function (closure) that maps it to the dollar sign so it can't be overwritten by another library in the scope of its execution."

(function( $ ){
  $.fn.myPlugin = function() {
    // Do your awesome plugin stuff here
  };
})( jQuery );

From http://docs.jquery.com/Plugins/Authoring

share|improve this answer
Taking you word for it...awesome, and thanks a ton. – Cody Oct 19 '12 at 15:41

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.