jQuery validate plugin require field if another field has a value and vice versa

if you look at the “rules” section’s example code in the documentation page, there is a depends field you can set.

something like the following (this is right off my head, not tested):

...
secondInput: {
    required: function(element){
            return $("#firstInput").val()!="";
        }
}
....

Leave a Comment