Stores the most valuable pieces of JS code you can reuse in different projects many times
disable the submit buttons when clicking submit
$('form').submit(function(){ // On submit disable its submit button $('input[type=submit]', this).attr('disabled', true); });