In my form I have a normal submit button which validate my form with, for example, I have
$(\"#formTest\").submit(function (e) { alert(\'test\'); }); &l
you will want to make a handler for the button, and put a preventDefault() on it's event.
$('button').click(function(e){ e.preventDefault(); alert('i clicked!'); });