Added document.ready shortcut to $().
[jquery.git] / jquery / jquery.js
index 6f1cd8d..dad8e6d 100644 (file)
@@ -17,6 +17,14 @@ window.undefined = window.undefined;
  * @constructor
  */
 function jQuery(a,c) {
+
+       // Shortcut for document ready (because $(document).each() is silly)
+       if ( a && a.constructor == Function )
+               return $(document).ready(a);
+
+       // Make sure t hat a selection was provided
+       a = a || jQuery.context || document;
+
        /*
         * Handle support for overriding other $() functions. Way too many libraries
         * provide this function to simply ignore it and overwrite it.
@@ -35,9 +43,6 @@ function jQuery(a,c) {
                        // Use the default method, in case it works some voodoo
                        return jQuery._$( a );
 
-       // Make sure t hat a selection was provided
-       a = a || jQuery.context || document;
-
        // Watch for when a jQuery object is passed as the selector
        if ( a.jquery )
                return a;