Answers for "on form submit disable button"

1

button onclick disable after submit

onClick="this.form.submit(); this.disabled=true; this.value='Sending…'; "
Posted by: Guest on March-09-2021
1

on form submit disable button

$('form#id').submit(function(){
    $(this).find(':input[type=submit]').prop('disabled', true);
});
Posted by: Guest on March-15-2022

Code answers related to "on form submit disable button"

Browse Popular Code Answers by Language