jquery-validation icon indicating copy to clipboard operation
jquery-validation copied to clipboard

jQuery Validation repackaged for Meteor.

Results 8 jquery-validation issues
Sort by recently updated
recently updated
newest added
trafficstars

There are new methods which is not included in the package please consider an update, for instance `phoneUS `validation isn't working, here is the cdn to the new methods from...

Exception from Tracker afterFlush function: TypeError: $(...).validate is not a function at null. (thewebsite.js:10) at template.js:116 at Function.Template._withTemplateInstanceFunc (template.js:457) at fireCallbacks (template.js:112) at null. (template.js:205) at view.js:107 at Object.Blaze._withCurrentView (view.js:538)...

I've successfully returned a value from Meteor.call to a method on the server, however now I can't get it to actually validate based on the value returned. Here's the custom...

I try, but some time don't work. Can't find `$( "#example-form" )` (maybe attach before rendered). ```js Template.exampleForm.onRendered( function() { $( "#example-form" ).validate(); }); ``` And then ```js Template.exampleForm.onRendered( function()...

I'm using this package along with the module pattern defined on TMC ([here](https://themeteorchef.com/snippets/using-the-module-pattern-with-meteor/)). My one question: where's the right place to add a reactive variable to handle form state? I...

My big issue when I tried the jquery-validation plugin via npm was the inability to reload locales. Could you expose some form of module to patch this and allow localized...

Hi @themeteorchef I am able to submit form if I give some space by pressing keyborad spacebar, How to resolve this issue? I have mentioned required in the rules. Thanks...

If I use class-based validation rules like follows: ``` {{#with myItem}} Item Number {{/with}} ... ``` And a simple validate() call in onRendered(): ``` Template.itemEdit.onRendered(function () { $('#formItem').validate(); ``` I...