I have a collection of checkboxes
<
Like this:
if (!$('input.paid[type=checkbox]:not(:checked)').length) do('stuff');
This will check if there are any that are unchecked, and do stuff if there aren't (i.e. they are all checked).