sounds like you've done the classic mistake of binding your desired ajax functions to the submit button itself.
Instead of doing that, bind it the forms submit event instead.
http://api.jquery.com/submit/
Code:
$("#element").submit(function(e){
e.preventDefault();
//do my ajax submittal etc here
});
- The idea is anything that fires the forms submit event , will be handled the way you intended.