Prevent Multiple Form Submissions With JQuery
$('#formID').submit(function(){
  // Disable the submit button      
  $('#submitID').attr('disabled', true);
  // Change the "Submit" text
  $('#submitID').prop('value', 'Please wait...');
  
  return true;
       
});
