get value of checked checkbox javascript code example
Example: how to take value only from the checked checkbox
document.getElementById('select').onclick = function() {
var checkboxes = document.querySelectorAll('input[type="checkbox"]:checked');
for (var checkbox of checkboxes) {
document.body.append(checkbox.value + ' ');
}
}