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 am using the bassistance jquery plugin validation.

I have a drop down list with 2 values.

If the first value is selected by the user a valid datefield needs to be populated and if the second option is selected then a textbox needs to be filled with some text.

If nothing is selected then it need to return a validation on this as well

How can I achieve this?

thanks

share|improve this question

1 Answer

Well, if it is a dropdown, you can't really have "nothing" selected. So, it sounds like in your case, you might want to make three options, the first of which is something like "Choose one", you can then you the jQuery to test for this condition and throw an alert if that value isn't one of the two that trigger an action. You can then force them to go back and choose of the two other options.

share|improve this answer
yes, there will be a 'Please Select' option. I was hoping to use the validation plugin as described above not test using an if statement in jquery – kurasa Nov 24 '09 at 1:14

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.