jQuery-Form-Validator
jQuery-Form-Validator copied to clipboard
[DISCONTINUED] jQuery plugin that makes it easy to validate user input while keeping your HTML markup clean from javascript code.
I'm using an append() to add more inputs inside my form, but when i insert a double quote for a literally search (in my js file) on data-validation-regex, its warn...
I have tried using Customer Language Object for override error messages, but it doesn't work. Below is the code I am trying. var myLanguage = { requiredFields: 'You have not...
It seems currently impossible to add Google reCaptcha v3 since on one hand the security module fires an error that reCaptcha shouldn't be added by hand and on another -...

when using data-validation-optional-if-answered and not all of the optional field filled - form submit button does not become enabled https://jsbin.com/cicogo/edit
``` $.formUtils.addValidator({ name : 'adultcheck', validatorFunction : function(value) { var birthDate = new Date(value); var difdt = new Date(new Date() - birthDate); var age=difdt.toISOString().slice(0, 4) - 1970; if (age >=...
Hi, I am trying to implement a custom validation which will contain different check. Depending on different checks the function will show different error message. Is it possible? if Yes,...
i have a pretty huge form with many types of fields (date, numbers, text, checkboxes, radios, etc..). One of the important behaviors i need form my form is to be...
I have one form, with step 1, step 2, step n. How is that validation done?. For example tab 1 input 1 required input 2 required button validate and continue...
hi. how i can validate 'SELECT' on focus? not in "onBlur"