Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have this basic HTML structure:

<fieldset>
    <input/>
    <label></label>
    <div class="toggle_box">
        <div class="switch"></div>
    </div>
</fieldset>

I would like this to happen when my input is checked:

<fieldset>
    <input checked="checked" />
    <label></label>
    <div class="toggle_box">
        <div class="switch" state="on"></div>
    </div>
</fieldset>

Add state="on" to the switch div. Is there any selector in jquery I can use to get the checked state of that particular input? (there are multiple on a page).

Thanks for your brainstorming!

share|improve this question

3 Answers

up vote 2 down vote accepted

This works; you'll need to add type="checkbox" to your inputs to make them checkboxes. (Observe the effect by inspecting the switch divs with Chrome's Dev Tools or Firebug.)

$('fieldset input[type=checkbox]').change(function() {
    var el=$(this).parent().find('.switch');
    if ($(this).is(':checked')) el.attr('state','on');
    else el.removeAttr('state');
});
share|improve this answer
@josh this should work too right: $('fieldset input[type=checkbox]:checked').parent().find('.switch').attr('state','on') ; ??? – SnippetSpace May 17 '11 at 3:03
@josh, just to know, can we use attribute 'state' for DIV tag? or we can use any like "foo", "bar", .. – Hoque May 17 '11 at 3:13
@SnippetSpace: Depends on what you're doing. That will only add state="on" to divs associated with checked inputs when that line of code is executed. If you're doing this from something like a submit function, you're fine. Above, I register an event handler (via change()) so that the state attribute is dynamically updated when the user checks or unchecks a checkbox. – josh3736 May 17 '11 at 3:14
@josh, if it is like that, can we store value by adding attribute to an element instead of storing value in an input[type='text'] box – Hoque May 17 '11 at 3:19
@Hoque: You can add anything as an attribute to any tag. However, strictly speaking, adding a state attribute to a div is invalid from a HTML DTD standpoint -- the div element has only the standard global attributes. However, adding custom attributes (aka expando attributes) doesn't break anything in any browser, so there's really no harm. More here and here. – josh3736 May 17 '11 at 3:30
show 1 more comment

You can put all these divs inside another div, and then get the father div with*document.getElementById*, find the div you want in the content and change him.

<div id="fatherOfTheDivs">
        <fieldset>
            <input/>
            <label></label>
            <div class="toggle_box">
                <div id="div1" class="switch"></div>
            </div>
        </fieldset>

        <fieldset>
            <input/>
            <label></label>
            <div id="div2" class="toggle_box">
                <div class="switch"></div>
            </div>
        </fieldset>
</div> 
share|improve this answer

This will accomplish it for you.

$('input:checkbox').change(function () {
    if ($(this).is(':checked')) {
        $(this).parent().children('div.toggle_box').children('div.switch').attr('state', 'on');
    } else {
        $(this).parent().children('div.toggle_box').children('div.switch').removeAttr('state');
    }
});

You'll also have to modify your <input /> to <input type="checkbox" />

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.