Published
- 1 min read
jquery get selected checkboxes
The solution for this is noted below
jquery get selected checkboxes
Solution
var selected = []
$('#checkboxes input:checked').each(function () {
selected.push($(this).attr('name'))
})
Try other methods by searching on the site. That is if this doesn’t work