Below is the code, I get an error which says that submitHandler is an invalid label

 $(document).ready(function() { 
    $("#withdraw").validate({ 
            rules: { 
             amount: {
                required: true,
                 number:true,
                 min:0,
                 max:<?php echo $balance; ?>

            } ,
            bank:{
                required:true,

            },
            cardnumber1: {
                required: true,
                 minlength:8

            },
           cardnumber2:{
              required:true,
              equalTo: "#cardnumber1"
             },
              holder:{
              required:true,
            }
      }
    }),
       submitHandler: function(form){
           var answer = confirm("Do you really want to withdraw this amount of money from your account?")
        if (answer){
            form.submit();
        }
        else{
            return false;
        }   
      }
    }); 

How to solve this problem?

link|improve this question
The whole code doesn't work. – Steven Jan 27 '10 at 3:22
Is my question clear? – Steven Jan 27 '10 at 3:54
var answer = confirm("Do you really want to withdraw this amount of money from your account?") ; – jjj Feb 22 '10 at 11:46
at the end of your code --> ); where does it start..? – jjj Feb 22 '10 at 11:46
. this is shouldn't be community wiki..!!! – jjj Feb 22 '10 at 11:51
feedback

1 Answer

You have an extra closing brace and parent here, just before submitHandler, this: }), should just be: , The brace before it closes the rules object.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.