I am using jQuery with the validate plugin at http://docs.jquery.com/Plugins/Validation/validate
I want to prevent the form from submitting after its validation and
Maybe you can validate externally without using a submit button:
if($("#myform").valid()){ alert("Do some stuff..."); }