Hello guys !
I'm facing an issue trying to prevent the "apply" form from submitting... I'm trying to make a few other checks before actually sending it, but nothing that I try seems to be working, the form sends itself every time.
Here is what I'm trying :
$(document).ready(function() {
$('form').on('submit', function(e) {
e.preventDefault();
console.log('BOUH');
return false;
});
});
Do you have any idea how to solve this ?
Thank you very much !