You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In #1071 we introduced a programmatic reCAPTCHA challenge to ensure our HTML5 form validation was taking place.
In #1088 we added the spinner animation to certain buttons, and in doing so, worked through a problem introduced in #1071 where the Javascript .submit() on a form element wasn't triggering the submit event. The solution using .requestSubmit()does generate the submit event and it all worked as expected.
However some key browsers/versions don't yet support the .requestSubmit() method. Specifically, iPhone Safari until version 16, which was only released in September 2022.
In #1071 we introduced a programmatic reCAPTCHA challenge to ensure our HTML5 form validation was taking place.
In #1088 we added the spinner animation to certain buttons, and in doing so, worked through a problem introduced in #1071 where the Javascript
.submit()
on a form element wasn't triggering thesubmit
event. The solution using.requestSubmit()
does generate thesubmit
event and it all worked as expected.However some key browsers/versions don't yet support the
.requestSubmit()
method. Specifically, iPhone Safari until version 16, which was only released in September 2022.More on caniuse.com
To Reproduce
Steps to reproduce the behavior:
Expected behavior
The form should submit on all browsers/devices.
Desktop (please complete the following information)
Smartphone (please complete the following information)
The text was updated successfully, but these errors were encountered: