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

I have this simple piece of code in jQuery

$(document).ready(function() {
    $('#switcher').click(function(event) {
           if ($(event.target).is('.button')) {
            $('body').removeClass();
                if (event.target.id == 'switcher-narrow') {
               $('body').addClass('narrow');
            }
            $('#switcher .button').removeClass('selected');
            $(event.target).addClass('selected');
        }
    });
});

for this html code :

<body>
    <div id="switcher" >
        <h3>Style Switcher</h3>
        <div class="button selected" id="switcher-default">
        Default
        </div>
        <div class="button" id="switcher-narrow">
        Narrow Column
    </div>
</body>

I have a very simple, yet tricky question (at least for me) : what does body refer to ?

I imagine that it encapsulates everything under #switcher but then my h3 style would disappear on click.

share|improve this question
open any html file...what is the main content element? jQuery is targeting that elemnt – charlietfl Mar 5 '12 at 4:15
To the <body> element in the HTML. – Chandu Mar 5 '12 at 4:15
That would refer to your <body> tag.... isnt it..? – Sudhir Mar 5 '12 at 4:15
2  
I recommend using jQuery. – mootinator Mar 5 '12 at 4:18

3 Answers

up vote 5 down vote accepted

It refers to the element <body>.

share|improve this answer

$('body') refers to the <body>...

you can select by tagName in jQuery. Ao $('div') refers to all the divs
and $('body') refers to all the bodies(only one exist...)

share|improve this answer

$('body') is the body element.

It's trying to remove any classes that exist on the body tag.

share|improve this answer

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.