jQuery Live Form Validation Version 1.1
I made some incremental changes to the previous version of jQuery Form Validation and added some new features to the same.
New features in version 1.1
- Validations of radio-buttons and check-boxes now possible
- Added jquery.validation.functions.js to modularize addition of new validation functions.
- New validation functions added
- isValidDate(year, month, day): It takes in three parameters the year(i.e. full year) of the date, the month of the date and the day part of the date and returns false if its not a valid date and true if valid. It includes checking of leap years. For example: 02-29-2008 will show as valid but 02-29-2009 as invalid.
- isChecked(id): It takes the id of the container containing the group of check-boxes or radio-buttons and returns false if none of the children were checked and true if at-least one was checked.
Download and Demo
Advanced Demo: Click Here
Download: Click Here
Project Repository: Click Here


Hi, may I know how to validate confirm password field? I need to validate that the confirm password field should be the same as input in the password field.
Thanks
Hi azril,
Thanks for your comment. I have added a password and confirm password field example to the advanced demo of jQuery Live Form Validation ( http://www.geektantra.com/projects/jquery-form-validate/advanced_demo/ ). Just check its source to have a better understanding. Its actually very simple. In the expression for the confirm password validation just put an if statement to check if it matches the password.
GeekTantra
[...] Go here to read the rest: jQuery Live Form Validation Version 1.1 | GeekTantra [...]
[...] This post was Twitted by LaFermeDuWeb [...]
mm… attractive ))
Hey how to do validation for url please its urgent
Is it possible to do custom validation, something like; if text field is empty and drop down not selected then display message?