I can easily iterate over all the checkboxes in a given page with jQuery, but I don’t quite understand how I can iterate over the checkboxes in a specific form with a specific name, as my module may be used on a page with any number of other types of forms.
Share
$('form[name="formName"] :checkbox').each(function() { });