Flexible Form Validation Library: Validatious
5
Nov
Validatious is an unobtrusive & easy to use JavaScript form validation library that does not depend on any JS frameworks.
It has built-in validators like numeric, e-mail, URL, max/min char, etc. & custom ones can be created.
Using the library, it is possible to create chained validation rules like: validate( "email".is("required").andIsAn("email") );.
How and when Validatious does validation, how it displays errors & more can be controlled.
The library supports multilingual error messages with the help of a language file or overriding pre-built ones.
Requirements: No Requirements
Compatibility: All Major Browsers
Website: http://validatious.org/
Demo: http://validatious.org/learn/examples/registration_html
Download: http://validatious.org/download/latest
Compatibility: All Major Browsers
Website: http://validatious.org/
Demo: http://validatious.org/learn/examples/registration_html
Download: http://validatious.org/download/latest
- Tags:
Javascript
- Filed under: Forms, Goodies
- 2 Comments






















2 Responses for "Flexible Form Validation Library: Validatious"
Thanks for post!
Just one comment: when we deal with validation we should not concern only with client point of view, but also with server view, to avoid security problems, such as cross-scripting and injection. In this sense only javascript validation is not enough, because it doesn’t prevent in any way the server attacks.
But no doubt that Validatous 2.0 helps the user experience.
Thanks!