Files
egbim_homepage/egbim/plugin/recaptcha/recaptcha.js
T
2026-07-23 16:15:57 +09:00

9 lines
182 B
JavaScript

function chk_captcha()
{
if ( ! jQuery('#g-recaptcha-response').val()) {
alert("자동등록방지를 반드시 체크해 주세요.");
return false;
}
return true;
}