[Solved] Bassistance Validation - SubmitHandler code not running

[Solved] Bassistance Validation - SubmitHandler code not running

Hi,
I've just downloaded this plugin and was trying to integrate in my scripts.

the validation worked as charm on the spot as soon as I've added the code, however the submitHandler seems not to work correctly. I have been through the forum and have seen other people having similar issues but haven't been able to identify a solution.

what happened before I've implemented the validation plugin is that my form didn't have a submit button but only two normal buttons one to reset the form and the other to show a summary of the form content (when the user click the button it run a JS function to put all the info together in a nice looking table).

Now I've added the submit button to make the plugin works but I still don't want it to submit and want to show the summary so I've implemented the submitHandler code which does not run at all, it validates the form correctly but nothing happens when I click the submit button... It should show the alert popup but it doesn't. This is the js code
  1.     <script type="text/javascript" charset="utf-8">
        /* FORM VALIDATION */
        $(document).ready(function() {
          $("#triage").submit(function () { alert('test'); return false; });
          $("#triage").validate({
            submitHandler: function(form) {
               alert('test');





  2.            //summarize();
              return false;
            }
          });
        });
        </script>