Side navigation
#4662 closed bug (invalid)
Opened May 15, 2009 02:44PM UTC
Closed February 05, 2010 08:31PM UTC
Validation Failure on Arbitrary Meta Attributes
Reported by: | Cerin | Owned by: | joern |
---|---|---|---|
Priority: | major | Milestone: | 1.4 |
Component: | plugin | Version: | 1.3.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
If an input contains a meta attribute that's not explicitly defined in jquery.validate.js, e.g.
<input type="text" name="myinput" class="{string:true}" />
it fails with an unhelpful "$.validator.methods[method] is undefined" error.
This can be fixed by adding this code on line 471 of jquery.validate.js:
if(!$.validator.methods[method]){ continue; }