Files
firstgarden-web-gnu/plugin/recaptcha_inv/recaptcha.js
2018-03-30 18:12:51 +09:00

21 lines
332 B
JavaScript

function chk_captcha()
{
if ( ! jQuery('#g-recaptcha-response').val()) {
grecaptcha.execute();
return false;
}
return true;
}
function recaptcha_validate(token) {
var $form = jQuery("#g-recaptcha-response").closest("form"),
form_id = $form.attr("id");
if( $form.length ){
$form.submit();
}
}