How To Validate Passwords Using jQuery
erics, October 19th, 2011
The ability to validate BEFORE a form is submitted greatly reduces end-user frustration by telling the user immediately what the issue is. The jQuery Validation plugin does just that. Here is a link to the plugin’s home page: http://bassistance.de/jquery-plugins/jquery-plugin-validation/ This is a simple recipe for doing custom password validation: In the html head
1 2 3 |
<script src="/js/jquery-1.6.2.min.js"></script> <script src="/js/jquery.validate.min.js"></script> <script src="/js/validate.js"></script> |
In […]