Disable button after submit with jQuery April 22, 2023 by Tarik Try this: $('form').submit(function() { $(this).find("button[type="submit"]").prop('disabled',true); });