Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
If it’s worthwhile to get all of the checked checkboxes utilizing Javascript, then you are able to do the next:
const checkedBoxes = doc.querySelectorAll('enter[name=mycheckboxes]:checked');
const information = [...document.querySelectorAll('.mycheckboxes:checked')].map(e => e.worth);
perform getCheckedBoxes(checkboxName) {
var checkboxes = doc.getElementsByName(checkboxName);
var checkboxesChecked = [];
for (var i=0; i<checkboxes.size; i++) {
if (checkboxes[i].checked) checkboxesChecked.push(checkboxes[i]);
}
}
return checkboxesChecked.size > 0 ? checkboxesChecked : null;
}
Now you merely name the perform:
var checkedBoxes = getCheckedBoxes("mycheckboxes");