2
Server-Seite in Ordnung, Arbeit richtig, aber Clientseite Validierung nicht wie unten Code arbeiten:Google reCaptcha Validierung nicht auf Client-Seite
<script src='https://www.google.com/recaptcha/api.js'></script>
<div class="g-recaptcha" data-sitekey="xxxxx"></div>
<div id="html_element"></div>
JS
<script>
var googleResponse = jQuery('#g-recaptcha-response').val();
if (!googleResponse) {
$('<p style="color:red !important" class=error-captcha"><span class="glyphicon glyphicon-remove " ></span> Please fill up the captcha.</p>" ').insertAfter("#html_element");
return false;
} else {
return true;
}
</script>
Wo ist mein Problem?