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'm using jQuery Validation Plugin 1.9.0 (from http://bassistance.de/). The problem is that I can't figure out how to validate a text field only if a user type something in it. If the user did not write anything that field should not be treated as required.

share|improve this question
Did you set the required option? rocketsquared.com/wiki/Plugins/Validation/Methods/required – mamoo Oct 27 '11 at 9:08
@mamoo, yes but I wan't validation only if text field contain some text – user1014152 Oct 27 '11 at 9:10

3 Answers

up vote 2 down vote accepted

Do not set the required rule option -

rules : {
     text1 : {
         required: false, // Or do not specify the option
         minlength: 3 // validation if it has value
     }
 },
share|improve this answer
Thanks. It works ! – user1014152 Oct 27 '11 at 9:16
if ( value != '' ) {
    // Do your validation here
}
share|improve this answer

You can pass a function to a validation rule. For instance

$("#demoForm").validate({
               rules: {
                    "requiredField": {sampleRule: function(e){
                                                var input = $(e); 
                                                if(input.val()) 
                                                    return true; 
                                                return false;
                                                }
                                        }                       
                },
                messages : {
                    "requiredField": "This field is invalid"
                }

Where "sampleRule" can be any rule you want eg. "required" or "minlength". The function gives the power to add conditional rule.

share|improve this answer

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.