How To Hide Recaptcha For Javascript Enabled Browsers And Pass Html Validation November 16, 2024 Post a Comment I wish to use recaptcha for only non-JavaScript enabled browsers. To do so, I tried using the tag as shown below. Solution 1: The reCAPTCHA PHP library will be rendering a further < noscript> tag into the DOM inside of your existing one, causing the invalid HTML - because by default it uses javascript.Take a look here - Displaying reCAPTCHA Without Plugins - Specifically the section "Displaying reCAPTCHA Without Plugins". It shows you an example of what the HTML markup needs to look like. You could try just pasting in the code in the noscript tags...<iframesrc="http://www.google.com/recaptcha/api/noscript?k=your_public_key"height="300"width="500"frameborder="0"></iframe><br><textareaname="recaptcha_challenge_field"rows="3"cols="40"></textarea><inputtype="hidden"name="recaptcha_response_field"value="manual_challenge">Copy Share Post a Comment for "How To Hide Recaptcha For Javascript Enabled Browsers And Pass Html Validation"
Post a Comment for "How To Hide Recaptcha For Javascript Enabled Browsers And Pass Html Validation"