SyntaxFix
Write A Post
Hire A Developer
Questions
A simple way to get the ids of the checked check boxes by class name:
$(".yourClassName:checkbox:checked").each(function() { console.log($(this).attr("id")); });