Victor Jonsson
Victor Jonsson
I'm not able to reproduce this http://jsbin.com/nitejanumu/edit?html,output What version of the plugin are you using?
That probably works. But I guess you would want the sanitation to take place first of all. This is achieved by putting your custom validator first in the `data-validation` declaration...
:+1:
The error message that will be displayed, when an input is invalid, gets resolved in the following steps: **1) Validator specific error message declared by invalid input** Looking if it...
Your validator function does not return anything. In this case the suggestion would be to do the entire validation on server side and use the `server` validation instead.
I would advise against using synchronous ajax requests since it's hard to foresee the possible side effects. Support for async validators is available since release #497 (not yet published on...
@DamiansDesign Here you can see a working example using version 2.3.74 http://jsbin.com/dediguhuvo/edit?html,console,output . I have also tried it out locally using version 2.3.76 and was not able to reproduce the...
@Vinchoz you have not included the module ```js $.validate({ modules: 'security', ... }); ```
Which version of firefox?
Looking at the code it should do exactly as you say, it should only try to find the referred input within the same form. Do you have any example code...