vote up 6 vote down star
4

I've seen four different ways to tell jQuery to execute a function when the document is ready. Are these all equivalent?

$(document).ready(function () {
  alert('$(document).ready()');
});  

$().ready(function () {
  alert('$().ready()');
}); 

$(function () {
  alert('$()');
});     

jQuery(function ($) {
  alert('jQuery()');
});
flag

2  
btw, i think $(window).ready(...) works too. – geowa4 Jul 21 at 12:48

2 Answers

vote up 8 vote down check

There is no difference.

$ is the same as jQuery. If you view the unminified source, you will see var $ = jQuery = ... or something to that effect.

The jQuery function checks the type of it's parameter, if it is a function, it treats it the same as $(document).ready(...)

Calling jQuery without a parameter defaults to using document. So $() and $(document) are identical. Try it in Firebug.

link|flag
2  
This doesn't explain the second one – Draemon Jul 21 at 12:47
crap, i thought i got them all. hold on. – geowa4 Jul 21 at 12:53
2  
Is it defaulting to using document or is it a result of jQuery being returned via chaining after passing no args? – David Archer Jul 21 at 12:58
1  
Since you pointed it out, is there a difference between $(window).ready() and $(document).ready()? – Patrick McElhaney Jul 21 at 12:59
1  
@David: run $() in firebug, you will see that the result is jQuery with 1 element--document. – geowa4 Jul 21 at 13:04
show 8 more comments
vote up 2 vote down

re: Geroge IV's comments regarding $() == $(document) its correct. From the unminified source (init is what get called internally):

init: function( selector, context ) {
	// Make sure that a selection was provided
	selector = selector || document;

Also from source, to back up previous conversations:

// HANDLE: $(function)
	// Shortcut for document ready
	} else if ( jQuery.isFunction( selector ) )
		return jQuery( document ).ready( selector );

this should be community wiki. I've always been interested in the inner workings of jquery, now I've had an excuse to start looking :-)

link|flag
good hunting @Davd! – geowa4 Jul 21 at 14:42
btw, "this should be community wiki" <- so why isn't it? – geowa4 Jul 21 at 14:42
Ah don't know how to do that or if I can, but i've opened one up linking to this :-D – David Archer Jul 21 at 15:22

Your Answer

Get an OpenID
or

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