1.2.0 • Published 6 years ago

controlchecker v1.2.0

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

controlChecker

Form Control, Checker & Validation Input Plugins

<input type="text" class="check">

$('.check').controlChecker();

<input type="text" class="check" minlength="6" maxlength="6">

By default it will read minleght and maxlength for example you need input for pin number but number only will allowed. So add a class digit

<input type="text" class="check digit" minlength="6" maxlength="6">

<input type="email" class="check"> or <input type="text" name="your_email" class="check"> or <input type="text" name="abc" data-type="email" class="check">

Email validation has 3 ways to use it. First using a type email,the second way is using a name attribut which contains email and the last is using data atribut data-type="email".