Validation Form Plugins In jQuery – quickValidation.js

Form
Validation Form Plugins In jQuery - quickValidation.js
File Size: 13.67 KB
Views Total: 1588 views
Last Update:January 01, 1970
Publish Date: January 01, 1970
Official Website: Go to website
License: MIT
Plugin Author:
Demo    Download

A jQuery Form Validation Plugin quickValidation.js works in a way It doesn’t defines the rules in the Javascript, instead they are assigned directly by using a data-validate attribute in the input tag. I assign them right in the input itself. Using a data-validate attribute in the input tag, you can string together rules like this required,number,range=0-99, then add the .quickValidate class, add a data-name attribute to name your field for errors, and you’re done.

Table of Contents

How to use :

1. Add Script :

<script src="jquery/1.8.2/jquery.min.js"></script>
<script src="js/jquery.quickValidate.js"></script>

2. Add Html :

<input type="text" name="Name" class="quickValidate" data-validate="required,number,range=0-99" />

3. Add script for validation :

$('form').quickValidate();

4. OPTIONS

classClass of inputs being validated, default: .quickValidate
notificationClassClass of notification popup default: .notification
errorClassClass of error text in notification default: .error

Thanks for make jQuery plugin is developed by For more Helpfull for users, please check the demo page or visit the official website.
List Of Version :

Mady

Mady Schaferhoff is an expert jQuery script at jQuerypost. He offers web development services to clients globally. He also loves sharing Html,CSS, jQuery knowledge through blog posts like this one.

Related jQuery Plugins

You Might Also Like