I\'m trying to validate a form using the validate plugin for jquery. I want to require that the user check at least one checkbox in a group in order for the form to be sub
$('#subscribeForm').validate( { rules: { list: { required: true, minlength: 1 } } });
I think this will make sure at least one is checked.