vote up 7 vote down star
2

I want to do something like this

$(".myCheckBox").checked(true);

or

$(".myCheckBox").selected(true);

Is such a thing built into JQuery?

To clarify, I wish to set the value.

flag

76% accept rate

4 Answers

vote up 11 vote down check

it certainly is

To check the checkbox (by setting the value of the checked attribute)

$('.myCheckbox').attr('checked','checked')

and un-checking (by removing the attribute entirely)

$('.myCheckbox').removeAttr('checked')
link|flag
Is this getting the value or setting the value? How do I uncheck it? – tpower Jan 8 at 22:40
Yes this is setting the attribute value, and uncheck by removing the attribute. I have updated my answer to show this. – Xian Jan 8 at 22:48
vote up 5 vote down

you can do this:

$('.myCheckbox').attr('checked',true) //Standards compliant

or

$("form #mycheckbox").attr('checked', true)

If you have custom code in the onclick event for the checkbox that you want to fire, use this one instead.

$("#mycheckbox").click();

You can un-check by removing the attribute entirely

$('.myCheckbox').removeAttr('checked')

You can check all checkboxes like this:

$(".myCheckbox").each(function(){
            $("#mycheckbox").click()
        });
link|flag
you can also go $("#myTable input:checkbox").each(...); – Chris Brandsma Jan 8 at 22:37
vote up 3 vote down
$("form #mycheckbox").attr('checked', true);

and if you want to check if a checkbox is checked or not:

$('form #mycheckbox').is(':checked');
link|flag
Checking for a value of 'checked' is considered more standards-compliant as per Xian's answer. – cletus Jan 8 at 22:31
vote up 1 vote down
$("#mycheckbox")[0].checked = true;
$("#mycheckbox").attr('checked', true);
$("#mycheckbox").click();

The last one will fire the click event for the checkbox, the others will not. So if you have custom code in the onclick event for the checkbox that you want to fire, use the last one.

link|flag
top one will fail...checked is not a jquery object member – redsquare Jan 9 at 0:20
i think you meant $("#mycheckbox")[0].checked for the first one, but i havent verified that for sure – Simon Feb 2 at 5:27
You are correct, and I fixed the error. Thank you. – Chris Brandsma Feb 3 at 17:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.