Customizable jQuery Client Side Validation Plugin - Verify.js

File Size: 256KB
Views Total: 2639
Last Update:
Publish Date:
Official Website: Go to website
License: MIT
   
Customizable jQuery Client Side Validation Plugin - Verify.js

Verify.js is a highly-customizable jQuery plugin that helps you implement extendable client side validation with asynchronous rules to your form elements.

You might also like:

Basic Usage:

1. Include the latest jQuery library and Verify.js on your web page

<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script src="dist/verify.prompt.min.js"></script>

2. The HTML. The plugin will auto-initialise all forms that contain an element with data-validate attribute.

<form>
<input value="jQuery" data-validate="required,number">
<input value="Script" data-validate="required,number">
<input class="submit" type="submit">
</form>

3. Done


This awesome jQuery plugin is developed by unknown. For more Advanced Usages, please check the demo page or visit the official website.