I have a Payment Processing Form to subscribe to Secure Zone. Upon review, I definitely need to animate the Payment Form on Submit (animate the page or button) to let the site visitor know the payment is processing. On submit takes quite a while for the Stripe payment to process, and there’s no indication that anything is happening. This site is for stroke survivors/caregivers, I need it to be as user-friendly as possible.
I’m fairly close (I think). I’m trying to animate the Submit button with “Payment Processing” with a loading icon. I almost have it working on a test page - See test page with 1 field (below)
BUT… if you click Submit Now before you fill in all the fields, it will change the button to the Loading icon with “Payment Processing” AND jump you to the incomplete required fields on form validation. Unfortunately I need it to validate all fields first, then if all are good, trigger the animated button. I sort of understand javascript. I’m trying to use MDB spinner + javascript, but I have no idea how to initiate it AFTER the form has validated. Is this even possible? Looking for a quick solution, as the form is live.
TEST FORM: https://unitedstrokealliance.org/_test5
ACTUAL FORM: https://unitedstrokealliance.org/subscribe-now-what-videos
my script :
$(’#btn-one’).click(function() {
$(’#btn-one’).html(‘Payment Processing…’).addClass(‘disabled’);
});