Wondering if it’s possible, can be made possible or even if its a good thing to do; disable the submit button (with new label) until the form redirects to a new page or reloads current page.
What do you think?
With a bit of jQuery:
$('#publishForm').submit(function(){ $('#publishForm input[type=submit]').attr('disabled', 'disabled').val('Sending...');});
Thanks again, I should have thought of that :(