I\'ve created a form using the Twitter Bootstrap framework and have integrated the jQuery Validation Plugin. I have one form with a series of yes/no questions with radio buttons
Use the errorClass
option to set the jQuery Validate plugin to your desired class
for errors. This will apply both .control-group
and .error
classes upon a validation error...
$(document).ready(function () {
// initialize the plugin
$("#inputForm").validate({
errorClass: "control-group error"
});
});
http://jsfiddle.net/F28PF/1/
See documentation for the plugin options: http://jqueryvalidation.org/validate
EDIT:
As pointed out, the default behavior puts the errorClass
on the message and the input
element.
If you need to toggle the error/valid classes on something else, you would leverage the highlight
and unhighlight
callback functions.
$(document).ready(function () {
// initialize the plugin
$("#inputForm").validate({
errorClass: "control-group error",
highlight: function (element, errorClass, validClass) {
$(element).closest(".control-group").addClass(errorClass).removeClass(validClass);
},
unhighlight: function (element, errorClass, validClass) {
$(element).closest(".control-group").addClass(validClass).removeClass(errorClass);
}
});
});