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
Is your feature request related to a problem? Please describe.
Yes, most forms have recaptchas, however if we are using your libary it would be nice that we could use it for everything in form including recaptcha.
Describe the solution you'd like
Implement recaptcha validation using this basic js
var response = grecaptcha.getResponse();
if (response.length === 0) {
event.preventDefault(); // Prevent form submission
document.getElementById('recaptchafeedback').style.display = "block";
/// alert("Please complete the reCAPTCHA challenge.");
return false; // Prevent form submission
} else {}
Thanks for libary.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Yes, most forms have recaptchas, however if we are using your libary it would be nice that we could use it for everything in form including recaptcha.
Describe the solution you'd like
Implement recaptcha validation using this basic js
var response = grecaptcha.getResponse();
if (response.length === 0) {
event.preventDefault(); // Prevent form submission
The text was updated successfully, but these errors were encountered: