There are a few things you need to bear in mind.
1. There are several ways to submit a form
- using the submit button
- by pressing enter
- by triggering a submit event in JavaScript
- possibly more depending on the device or future device.
We should therefore bind to the submit event, not the click event. This will ensure our code works on all devices and assistive technologies now and in the future.
2. Hijax
The user may not have JavaScript enabled. A hijax pattern is good here, where we gently take control of the form using JavaScript, but leave it submittable if JavaScript fails.
We should pull the URL and method from the form, so if the HTML changes, we don't need to update the JavaScript.
3. Unobtrusive JavaScript
Using event.preventDefault() instead of return false is good practice as it allows the event to bubble up. This lets other scripts tie into the event, for example analytics scripts which may be monitoring user interactions.
Script should properly be linked to in the head section of the page, and enhance the user experience, not get in the way.
Code
Assuming you aggree with all the above, and you want to catch the submit event, and handle it via AJAX (a hijax pattern), you could do something like this:
$(function() {
$('form.my_form').submit(function(event) {
var form = $(this);
$.ajax({
type: form.attr('method'),
url: form.attr('action'),
data: form.serialize()
}).done(function() {
// Optionally alert the user of success here...
}).fail(function() {
// Optionally alert the user of an error here...
});
event.preventDefault(); // Prevent the form from submitting via the browser.
});
});
You can manually trigger a form submission whenever you like via JavaScript using something like:
$('form.my_form').trigger('submit');