Foreach Form's Checkboxes
$('form').each(function(i, form){ $(form).find(':checkbox').each(function(j, checkbox){ if( $(checkbox).is(':checked') { // do something with checked box } else { // do something with un-checked box } }); });