About

The jQuery validation plugin is a plugin by Jörn Zaefferer for . 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:

Other typical issues:

  • rules are defined on input name attributes, not by id.
  • a name with 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 submitHandler callback function to deal with successfully validated forms, and invalidHandler callback function for invalid forms.
  • by default, the form and elements to be validated must be visible, otherwise validate will ignore them.
history|show excerpt|excerpt history