vote up 0 vote down star

hey all,

i'm using bassistance jquery plugin validation and i have 2 textboxes for a start and end date. is there a way to setup a rule to say if either one is specified then require both fields, but the user can choose to leave both blank and that's ok?

thanks, rodchar

flag

75% accept rate

1 Answer

vote up 0 vote down check

You can specify an expression to indicate whether a form field is required (documentation).

Lets say your form fields are called tbStartDate and tbEndDate, then your validation rules would be (untested):

$('#myForm').validate({
    rules:{
        tbStartDate: {required:'tbEndDate:filled'},
        tbEndDate: {required:'tbStartDate:filled'}
    }
});
link|flag
Thanks for the help, rod. – rod Sep 2 at 18:40

Your Answer

Get an OpenID
or

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