The jQuery validation plugin is a plugin by Jörn Zaefferer for jquery. Its main purpose is performing client-side and AJAX form validations.
Helpful Links:
Sample:
HTML:
<form id="test-form" action="post.php">
<input type="text" name="first_name" />
<input type="text" name="last_name" />
<input type="text" name="phone" />
<input type="submit" />
</form>
JavaScript:
$(document).ready(function() { // ensure form's HTML is ready
$("#test-form").validate({ // initialize plugin on the form.
// your rules and other options
rules: {
first_name: {
required: true
},
last_name: {
required: true
},
phone: {
required: true,
digits: true
}
}
});
});
jsFiddle Demo: http://jsfiddle.net/mE846/
Documented Options: http://docs.jquery.com/Plugins/Validation/validate#toptions
Helpful questions:
- How to create a simple, custom rule
- Changing default error messages
- Remove Name Based jQuery Validation
Other typical issues:
- rules are defined on input
nameattributes, not byid. - a
namewith certain special characters must be enclosed in quotes. .validate()should be called once on DOM ready to initialize the plugin. Use.valid()to test the form for validity and/or get a boolean result of that test.- use
submitHandlercallback function to deal with successfully validated forms, andinvalidHandlercallback function for invalid forms. - by default, the form and elements to be validated must be visible, otherwise validate will ignore them.
