well my problem is that, i have a form, which i want to validate the fields using jquery, if the data is correct i let the submit continue, if no i disable the default behav
Since you said you are using a form, you could bind to the form's submit event:
$('form#id').submit(function(){ // your validation code });