An open API service indexing awesome lists of open source software.

https://github.com/binaryk/js-validation

This is a javascript easy form validation.
https://github.com/binaryk/js-validation

Last synced: 8 months ago
JSON representation

This is a javascript easy form validation.

Awesome Lists containing this project

README

          

# jsValidation
This is a javascript easy form validation.
### I want to develop a big library for javascript form validation.

To use it < very simple >:

1. copy files in your project and inject them into your page
2. create an object for your form:
var validate = new App.Forms.Validate();
3. to add rule (and field) use method "addRule"
validate.addRule('email', {
rule: 'require',
message: 'This field is require'
});

4. before submit form use:

if( validate.validate() ){
myForm.submit();
}

In this case the script will validate your form and show error messages, and it return "false" into "if".


___
This is the first version of library.
I will develop it more but have patience.