I'm using jQuery validation engine and I have two custom rules that I need to use for one field. I've tried both of them one by one, they work fine. How do I attach both?
class="validate[required,custom[OFS, onlyLattinLetters], maxSize[140]]"
or
class="validate[required,custom[OFS], custom[onlyLattinLetters], maxSize[140]]"
doesn't work.