Click here to Skip to main content
Sign Up to vote bad
good
See more: C#4.0MVC3
Hi,
 
I need to chk the confirm password is equal to password or not with jquery rules.
 
first am tried with document ready function that time its working properly.
the coding are,
$(document).ready(function () {
<pre lang="cs">$(&quot;#frmSite&quot;).validate(
       {
        rules: {
        confirm password: {
        equalTo: &quot;#password&quot;
        }
      },
     messages: {
     confirm password: {
     equalTo:&quot;Password is not match&quot;
     }
   }
});</pre>
});
 
This is working correctly..
but the same coding am used in button click function
 
$('#btnSiteSave').click(function (e) {
                 $("#frmSite").validate(
       {
        rules: {
        DaysinWeek: {
        equalTo: "#GMT"
        }
      },
     messages: {
     DaysinWeek: {
     equalTo:"Password is not match"
     }
   }
});
    });
 
if am giving the same coding in click function its not working.
Please help me to solve this problem.
Posted 16 Aug '12 - 19:08


1 solution

hi,
 
try this
 
jQuery(function(){
        $("#submit").click(function(){
        $(".error").hide();
        var hasError = false;
        var passwordVal = $("#password").val();
        var checkVal = $("#password-check").val();
        if (passwordVal == '') {
            $("#password").after('<span class="error">Please enter a password.</span>');
            hasError = true;
        } else if (checkVal == '') {
            $("#password-check").after('<span class="error">Please re-enter your password.</span>');
            hasError = true;
        } else if (passwordVal != checkVal ) {
            $("#password-check").after('<span class="error">Passwords do not match.</span>');
            hasError = true;
        }
        if(hasError == true) {return false;}
    });
});
  Permalink  

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Your Filters
Interested
Ignored
     
0 Mohammed Hameed 268
1 OriginalGriff 261
2 Sergey Alexandrovich Kryukov 188
3 Mayur_Panchal 153
4 Santhosh G_ 108
0 Sergey Alexandrovich Kryukov 8,216
1 OriginalGriff 6,271
2 CPallini 3,528
3 Rohan Leuva 2,703
4 Maciej Los 2,234


Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 20 Nov 2012
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid