Skip to content

Commit d606861

Browse files
committed
add config array element "ignore : [] " to doValidate function, line 89, was missing & causing errors on Blur validate, when trying to read "length" property of unknown object "ignore"
1 parent ce973cd commit d606861

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

jquery.formvalidator.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@
8686
var $element = $(this);
8787

8888
var config = {
89+
ignore : [], // Names of inputs not to be validated, overwriting attribute notaed validation
8990
validationRuleAttribute : 'data-validation',
9091
validationErrorMsgAttribute : 'data-validation-error-msg', // define custom err msg inline with element
9192
errorElementClass : 'error', // Class that will be put on elements which value is invalid

0 commit comments

Comments
 (0)