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.

Today I must validate my form, and I have problem.

I have 2 radio buttons: - Company id: #firma - Private person id: #osoba

If company is checked I must validate NIP (company number) input as required and PESEL (person number) as not required.

If private person is checked I must validate PESEL as required and NIP as not required.

PESEL id: #pesel NIP id: #nip

I tried:

$("#domainform").validate({
  rules: {
    nip: {
      required: "#firma:checked"
    },
    pesel: {
      required: "#osoba:checked"
    }
  }, 
  debug: true
});
share|improve this question
conditional validation might help: stackoverflow.com/questions/1084475/… – Marcelo Diniz Jan 22 '12 at 17:55

1 Answer

You code is just ok, check the demo.

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.