validaty
Version:
jQuery Validaty - A Validation Plugin
83 lines (61 loc) • 3.06 kB
Markdown
[](https://travis-ci.org/wbotelhos/validaty)
[](https://badge.fury.io/js/validaty)
[](https://david-dm.org/wbotelhos/validaty)
[](https://david-dm.org/wbotelhos/validaty#info=devDependencies)
[](https://codeclimate.com/github/wbotelhos/validaty/maintainability)
[](https://www.patreon.com/wbotelhos)
+ jquery.validaty.css
+ jquery.validaty.js
+ jquery.validaty.validators.js
|Property |value |Description |
|-----------|---------|-------------------------------------------------|
|errorTarget|undefined|Callback to intercept the errors |
|focus |'first' |Field to be focused when validation fails |
|ignore |':submit'|Fields to be ignored |
|onInvalid |undefined|Callback called when some field is invalid |
|onMessage |undefined|Callback called when validation message is shown |
|onValid |undefined|Callback called when all fields is valid |
|validators |{} |Object to hold the validators functions |
The attribute `data-validaty` receives the validation name.
```html
<form>
<input type="text" data-validaty="required">
</form>
```
```js
$('form').validaty();
```
Used to ignore some validation included on `data-validaty`.
```html
<form>
<input type="text" data-validaty="required" data-validaty-ignore="required">
</form>
```
Add the key `on:` with the action you want to trigger the validation.
```html
<form>
<input type="text" data-validaty="required on:blur">
</form>
```
```js
$('form').validaty('helper'); // Gives you the internal helpers.
$('form').validaty('validator'); // Gives you a validator.
$('form').validaty('destroy'); // Destroy the Validaty's bind.
$('form').validaty('validate', selectors); // Execute the validation over the form or the given selectors.
```
This file should contain all validators, just includes your validations calling `register`.
|Property |Description |
|------------------|-----------------------------------------------------------------|
|validation-name |The name of your validation |
|validation-message|The message shown when you validation fails `return false` |
|form |The validated form |
|word |??? |