To do this you have to use the :checked selector. Although JP's answer is fine, I'd probably do this:
$('#form1').submit(function() {
if ($('input:checkbox', this).is(':checked') &&
$('input:radio', this).is(':checked')) {
// everything's fine...
} else {
alert('Please select something!');
return false;
}
});
Couple of notes:
- I think it reads better to use the
isfunction, which returns a boolean of the selector. - You can use
:radioand:checkboxas a shortcut for selecting all radios and checkboxes in a form. However, according to the jQuery manual, it is bad practice to use these selectors without specifyinginputbefore them, as they evaluate to*:checkboxand*:radiootherwise, which are very slow selectors. - You need to specify a context to the checks.
- By passing
thisas the second argument we are specifying a context for the search, and thus are only searching for checkboxes and radio inputs inside the current form. Without it we might get false positives if there happens to be another form in the page.
