checkbox get value of checked code example
Example 1: how to take value only from the checked checkbox
document.getElementById('select').onclick = function() {
var checkboxes = document.getElementsByName('vechicle');
for (var checkbox of checkboxes) {
if (checkbox.checked)
document.body.append(checkbox.value + ' ');
}
}
Example 2: how to take value only from the checked checkbox
$(document).ready(function() {
$('#select').click(function() {
$('input[type="checkbox"]:checked').each(function() {
document.body.append(this.value + ' ');
});
});
});