(function ($) { $(document).ready(function(){ $("#block-customlogin-external_registration").hide(); $("#block-customlogin-employee_registration").hide(); $(".emp-reg").click(function (){ $("#block-customlogin-external_registration").hide(); $("#block-customlogin-employee_registration").show(); //Load reCaptcha for the employee form showRecaptcha('recaptcha_container_employee', 'white'); }); $(".ext-reg").click(function (){ $("#block-customlogin-external_registration").show(); $("#block-customlogin-employee_registration").hide(); //Load reCaptcha for the external form showRecaptcha('recaptcha_container_external', 'white'); }); }); })(jQuery);