Hello,
We implemented a reCAPCTHA solution however are now noticing duplicate submissions (one success one failure) from the webhook implementation of reCAPCTHA. I'm not sure why this is running twice and wondering if anyone else had something similar happen to them. Appreciate any starting points!
Solved! Go to Solution.
You have a whole stack of onValidate listeners that aren't cooperating with each other.
When using a stack of multiple onValidates, you need to code carefully so form.submittable() (for one example) is carried from event to event and in a predictable order. They can't run fully independently.
You'd have to link to your page so we can see what's wrong with the JS.
You have a whole stack of onValidate listeners that aren't cooperating with each other.
When using a stack of multiple onValidates, you need to code carefully so form.submittable() (for one example) is carried from event to event and in a predictable order. They can't run fully independently.
going to have our developers take a look at the code thank you @SanfordWhiteman !!
Hi @SanfordWhiteman Sanford, still working on cleaning up this code and our developers are not able to find exactly where the validate issue resides. Any guidance?
Did they remove all the other validations? B/c there's nothing intrinsically wrong with the reCAPTCHA routine on its own.