Is it possible to change the text on the submit button after submission? Example the button has the word Submit and after the user submits the form, the button will now say Done. If so, how is it done?
Thanks!
Is it possible to change the text on the submit button after submission? Example the button has the word Submit and after the user submits the form, the button will now say Done. If so, how is it done?
Thanks!
Edit: Actually, a better solution would probably be to bind it to the submit handler of the form.
If you're using AJAX to process the form, you could simply have the button text change in the success callback of the $.ajax jQuery method like so:
I hope this helps!
Yes, it is possible & you can have it done with this:
FIDDLE EXAMPLE HERE
We can do by using the below code. It will make the submit button as 'Uploading please wait...' with the spinner icon.