Created
January 13, 2022 03:45
-
-
Save hypackel/e648408baf923e88245de367d0c07109 to your computer and use it in GitHub Desktop.
Recapcha set required
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
window.onload = function() { | |
var $recaptcha = document.querySelector('#g-recaptcha-response'); | |
if($recaptcha) { | |
$recaptcha.setAttribute("required", "required"); | |
} | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#g-recaptcha-response { | |
display: block !important; | |
position: absolute; | |
margin: -78px 0 0 0 !important; | |
width: 302px !important; | |
height: 76px !important; | |
z-index: -999999; | |
opacity: 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment