prevent multiple form submissions with jquery

Solutions on MaxInterview for prevent multiple form submissions with jquery by the best coders in the world

showing results for - "prevent multiple form submissions with jquery"
Karl
13 Oct 2018
1$('#formID').submit(function(){
2
3  // Disable the submit button      
4  $('#submitID').attr('disabled', true);
5
6  // Change the "Submit" text
7  $('#submitID').prop('value', 'Please wait...');
8  
9  return true;
10       
11});