Skip to content

Instantly share code, notes, and snippets.

@hypackel
Created January 13, 2022 03:45
Show Gist options
  • Save hypackel/e648408baf923e88245de367d0c07109 to your computer and use it in GitHub Desktop.
Save hypackel/e648408baf923e88245de367d0c07109 to your computer and use it in GitHub Desktop.
Recapcha set required
window.onload = function() {
var $recaptcha = document.querySelector('#g-recaptcha-response');
if($recaptcha) {
$recaptcha.setAttribute("required", "required");
}
};
#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