Answers for "jquery loop through all checkboxes"

0

loop through checkboxes jquery

$('input[type=checkbox]').each(function () {
    sList += "(" + $(this).val() + "-" + (this.checked ? "checked" : "not checked") + ")";
});
Posted by: Guest on November-11-2020

Code answers related to "jquery loop through all checkboxes"

Code answers related to "Javascript"

Browse Popular Code Answers by Language