jquery validation - multiple select fields in one form.

jquery validation - multiple select fields in one form.

I have a large form. One part of it is a column with selects.
All drop-downs initially set to "No". The only other option is "yes".

I need to make sure that at least one select is set to "yes".
Any number, even all of them can be changed to "yes", but only one is required.
I can easily add a rule that requires all the fields of the certain class to have certain type of value, but can't think of a way in js to only have one required. I can easily count number of "yes" values with PHP and prevent submitting on the back end, but would really like to have jquery do it first.

Working with id's won't do since all id's are unique,
So I guess I need a class rule.


Would really appretiate any help.