X-Git-Url: http://git.asbjorn.it/?a=blobdiff_plain;ds=sidebyside;f=src%2Fcore.js;h=5ccf15875ce9f20ee16c80b5d17da37a42636bde;hb=b7d4e0e46cb2cad6f400173cd09ce44d1b8ad04e;hp=35cac37b747c73470c7087abb25f1e8833c71004;hpb=b7a3b220a8a2b5b0378c9f176ca5ae0f786a6fcf;p=jquery.git diff --git a/src/core.js b/src/core.js index 35cac37..5ccf158 100644 --- a/src/core.js +++ b/src/core.js @@ -39,9 +39,6 @@ var jQuery = function( selector, context ) { push = Array.prototype.push, slice = Array.prototype.slice; -// Expose jQuery to the global object -window.jQuery = window.$ = jQuery; - jQuery.fn = jQuery.prototype = { init: function( selector, context ) { var match, elem, ret; @@ -51,6 +48,11 @@ jQuery.fn = jQuery.prototype = { return this; } + // $("body"): Shortcut for quickly finding the body element + if ( selector === "body" && !context && document.body ) { + selector = document.body; + } + // Handle $(DOMElement) if ( selector.nodeType ) { this.context = this[0] = selector; @@ -319,7 +321,8 @@ jQuery.extend({ isXMLDoc: function( elem ) { // documentElement is verified for cases where it doesn't yet exist // (such as loading iframes in IE - #4833) - return ((elem.ownerDocument || elem).documentElement || 0).nodeName !== "HTML"; + var documentElement = (elem ? elem.ownerDocument || elem : 0).documentElement; + return documentElement ? documentElement.nodeName !== "HTML" : false; }, // Evalulates a script in a global context