Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using the jQuery Validation Plugin. Is there any way to get the type of error from the jQuery form validation? For example,

$('registration-form').validate({
    rules: {
        email: {
            required: true,
            email: true
        }
    },
    messages: {
        email: {
            required: "This is a required field.",
            email: "This is not a valid email address"
        }
    },
    errorPlacement: function(error, element) {
        error.appendTo(element.parent());
    }
});

I would like to place only the error message generated from a "required" error inside a "div" somewhere on the html page rather than appending it to "element.parent()". If I can get the error type, e.g. "required" or "email" error, I can write the code to do this.

Any help is appreciated! Thanks!

aobs

share|improve this question

1 Answer

up vote 0 down vote accepted

You may edit plugin easily. You can add one more parameter for each validation(see the regexes) to identify which one is caught.

share|improve this answer
Thanks! I will do that. – aobs Aug 23 '12 at 3:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.