Get checked checkboxes
Loops through all the checked checkboxes and adds checkbox value to an array using jquery :checkbox selector.
$(":checkbox:checked").each(
function() {
$(this).val();
}
);
Loops through all the checked checkboxes and adds checkbox value to an array using jquery :checkbox selector.
$(":checkbox:checked").each(
function() {
$(this).val();
}
);
Get unchecked checkboxes
Loops through all the unchecked checkboxes and adds checkbox value to an array.
$(":checkbox").not(:checked).each(
function() {
$(this).val();
}
);
Refer:
0 comments:
Post a Comment