reCAPTCHA couldn't find user-provided function: onloadCallback
See original GitHub issueI have followed Explicitly render the reCAPTCHA widget and having the following message:
reCAPTCHA couldn't find user-provided function: onloadCallback
Issue Analytics
- State:
- Created 5 years ago
- Reactions:1
- Comments:10
Top Results From Across the Web
ReCAPTCHA couldn't find user-provided function: myCallBack
Make sure your callback function is being defined in the global scope. For some reason, in production my function was not in this...
Read more >reCAPTCHA couldn't find user-provided function
Hi, I have used your plugin (1.3) to get back to using Recaptcha V2 with contact form ... reCAPTCHA couldn't find user-provided function:...
Read more >ReCAPTCHA couldn't find user-provided function: myCallBack
jQuery : ReCAPTCHA couldn't find user - provided function : myCallBack [ Beautify Your Computer : https://www.hows.tech/p/recommended.html ] ...
Read more >reCAPTCHA couldn't find user-provided function - Toolset
1) Follow our document to setup reCAPCTHA field · 2) In case it is a compatibility problem, please deactivate all other plugins, and...
Read more >I have an issue in reCaptcha widget. - Google Groups
`reCAPTCHA couldn't find user-provided function: onloadCallback`. I want to solve it asap. please help me. Thanks. reCAPTCHA support's profile photo ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I’ve had the same issue and found two solutions:
In your index.html you probably have this:
<script src="https://www.google.com/recaptcha/api.js?onload=onloadCallback&render=explicit" async defer></script>remove “onload=onLoadCallback”
should look like this:
<script src="https://www.google.com/recaptcha/api.js?&render=explicit" async defer></script>That worked for me