There is no default method. Fortunately, you can add it.
jQuery.validator.addMethod('has2selected',function(value, element) { return $(element).filter(':checked').length >= 2; }, 'the error message');
EDIT: I read the documentation again, and the minimum length should work (if not for the code that this code could do). You did not send the code, so I'm not sure if this is causing an error, but in your minLength message it should be minlength .
source share