Answers for "iterate over through name of checkbox jquery"

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 "iterate over through name of checkbox jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language