I'm using the following code to track when a user exits a page on my site:
//track on page exit
function storeData(){
_gaq.push(['_trackEvent', 'Application Form', 'exit-form_application_', '', 4, false]);
}
$(window).on('unload',storeData);
However, I don't want to trigger the event when the form is submitted, therefore how could I prevent this?