livevalidation icon indicating copy to clipboard operation
livevalidation copied to clipboard

Open source javascript library for slick, powerful, and easy client-side validation.

Results 20 livevalidation issues
Sort by recently updated
recently updated
newest added

``` ``` onblur send a ajax request to server check the input username is occupy if available then show message OK else show tips fail

LiveValidation can work with AJAX submission but it required the use of the afterValidation option. The problem is that this option is not in the documentation at http://livevalidation.com/documentation I've reported...

Is there a way to amend the submit function so that if the validation fails, the window scrolls up to the first error? Example: http://beta.harborcompliance.com/registration-order-page1.php What's happening is that a...

**Scenario** I have an input which can be cloned and only has a class to identify it (as there cannot be more than one id with the same name). I...

**What I've Tried** ``` var myVariable = new LiveValidation('my_id', { validMessage: 'valid input', wait: 500}); myVariable.add(Validate.Presence, {failureMessage: "required field"}); ``` I try clicking on the select file button and then...

Is it possible to exclude the default 'select' value in a form select element? **jQuery** ``` var myVariable = new LiveValidation('my_id', { validMessage: 'valid input', wait: 500}); myVariable.add( Validate.Exclusion, {...

New HTML5 Input types are being used now - this allows them to be used by telling the script to treat them as Text (this is what browsers that don't...

I've fixed an unreachable code error. I've also compressed again livevalidation_standalone.js.

At line 229 simply add... case (this.element.nodeName.toUpperCase() == 'INPUT' && this.element.type.toUpperCase() == 'NUMBER'): return LiveValidation.TEXT; This allows LiveValidation to treat number fields with it's text validation logic. Presence and Numericality...

Hi all, I've a problem with valid element age on click. I want to check first that element age is valid then load loadresults();, i've tried few option but they...