Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I understand that $("#id") is faster because it maps to a native javascript method. Is the same true of $("body")?

share|improve this question

2 Answers

up vote 10 down vote accepted

No it does not use Sizzle, there's a special shortcut for $("body") in place, you can see the code here:

    // The body element only exists once, optimize finding it
    if ( selector === "body" && !context && document.body ) {
        this.context = document;
        this[0] = document.body;
        this.selector = "body";
        this.length = 1;
        return this;
    }

Note that this isn't quite the same as $(document.body), as the resulting context of $("body") is document, where as $(document.body) (like any other DOM node) has a context of itself.

share|improve this answer
Does it use sizzle for $("body.class")? Should I consequently use $("body").filter(".class")... or something? – Matrym Dec 9 '10 at 21:59
@Matrym - Newer browsers won't care much either way, they'll use native selector methods, like querySelectorAll(). But to answer directly, no $("body.class") or any variant except $("body") isn't specially handled, so it'll get dumped to the selector engine. – Nick Craver Dec 9 '10 at 22:09

This is straight from the source (code):

if ( selector === "body" && !context && document.body ) {
    this.context = document;
    this[0] = document.body;
    this.selector = "body";
    this.length = 1;
    return this;
}

For tags other than body

If you dig a little deeper it turns out they will use getElementsByTagName if no context is given. This will give a nice boost to performance over using the Sizzle engine.

// HANDLE: $("TAG")
} else if ( !context && !rnonword.test( selector ) ) {
    this.selector = selector;
    this.context = document;
    selector = document.getElementsByTagName( selector );
    return jQuery.merge( this, selector );

// HANDLE: $(expr, $(...))
}
share|improve this answer
3  
Whoa. jQuery sure has some neat tricks up its sleeve. – BoltClock Dec 9 '10 at 20:07
@BoltClock - It is actually a pretty logical optimization. – ChaosPandion Dec 9 '10 at 20:12
@ChaosPandion - Your updated answer is incorrect, the first version runs if no context is given, providing the <body> is present (it would be on document.ready). – Nick Craver Dec 9 '10 at 20:15
@Nick - Can you explain what you think is incorrect with more detail? – ChaosPandion Dec 9 '10 at 20:19
@ChaosPandion - It's just incorrect, if ( selector === "body" && !context && document.body ) { is true if no context is given, that's the code used, not the element selector branch. – Nick Craver Dec 9 '10 at 20:20
show 8 more comments

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.