Check and Uncheck a checkbox with jQuery
Posted: 10 Jan 2015, 07:38
I want to do something like this:
Or:
I wish to set the "checked" value to check or uncheck the checkboxes with class="chkbox".
How can I do it with jQuery?
Code: Select all
$(".chkox").checked(true);
Code: Select all
$(".chkox").selected(false);
How can I do it with jQuery?