I'm using jQuery Validation plugin to validate a form.
The problem is that I can't find a way to validate if a single checkbox in my form is checked
HTML markup:
<label for="terms">terms : </label>
<input type="checkbox" name="terms" id="terms">
jQuery code:
rules: {
terms: "required"
},
messages:{
terms: "check the checbox"
}
Any help would be appreciated.
See Question&Answers more detail:os