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.
|
2
|
I want to do something like this
or
Is such a thing built into JQuery? To clarify, I wish to set the value.
|
|||
|
|
|
|
it certainly is To check the checkbox (by setting the value of the checked attribute)
and un-checking (by removing the attribute entirely)
|
|||
|
|
you can do this:
or
If you have custom code in the onclick event for the checkbox that you want to fire, use this one instead.
You can un-check by removing the attribute entirely
You can check all checkboxes like this:
|
|||
|
|
|
and if you want to check if a checkbox is checked or not:
|
|||
|
|
|
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. |
||||||
|