// source --> https://herzenssache-nfsuf.de/wp-content/plugins/xqueue-maileon/class/../js/maileon-contact-form-recaptcha.js?ver=2.16.0 
﻿var $jQ = jQuery.noConflict();

$jQ(document).ready(function() {
    grecaptcha.ready(function() {
        grecaptcha.execute(xqueue_recaptcha.site_key, {action: 'subscribe'}).then(function(token) {
            var recaptchaResponse = document.getElementById('recaptcha');
            if (recaptchaResponse != null) {
                recaptchaResponse.value = token;
            }
        });
    });
});