http://docs.jquery.com/Plugins/Validation
Through Jquery in this link i developed a form . The validation are working fine but When no error i have to return a image (green color tick) to show field filled is correct format but i am unable to find where to change for required thing to happen.... Another issue is how to check or validate using jquery whether any of the radio boxes checked or not..... That For Gender Two radio boxes are available ...if none of these are checked i have to show error after second radiobox . Similar in case of checkboxes .......... $(document).ready(function(){ $("#commentForm").validate({ rules: { pwdtxt: "required", cpwdtxt: { equalTo: "#pwdtxt" } } }); }); This is the code that i included in script tag after including validation Jquery files. <script src="http://code.jquery.com/jquery-latest.js"></script> <script type="text/javascript" src="http://dev.jquery.com/view/trunk/ plugins/validate/jquery.validate.js"> </script>