I'm using jQuery Validation Plugin 1.9.0 (from http://bassistance.de/). The problem is that I can't figure out how to validate a text field only if a user type something in it. If the user did not write anything that field should not be treated as required.
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.
|
|
Do not set the required rule option -
|
|||
|
|
|
You can pass a function to a validation rule. For instance
Where "sampleRule" can be any rule you want eg. "required" or "minlength". The function gives the power to add conditional rule. |
|||
|
|