I don't know about validte plugin, but you can easily check your condition with jquery. for example you can add the same starting id to your text fields something like txt_Phone_bus, txt_Phone_Cell, txt_Phone_Home then you can check for the value of those fields with $('imput[type=text][id^=txt_Phone_]]'.each(function(){ // apply your validation for example one of them must be $(this).val ().length>0 });
On Jul 25, 8:04 am, kmac <lucie.friga...@gmail.com> wrote: > Hi, > > I have a form with three text fields: > > Business Phone > Cell Phone > Home Phone > > One of the fields must be filled. Using jquery.validate.js how do I > check for this? > > Thanks in advance for any help.