var aDIV = $('#contactFormAbsendenButton');
var buttonWidth = 139; var buttonColor = null;
// Absenden Button var absendenButton = g.addDiv(aDIV).width(buttonWidth).addClass('floatL'); if (buttonColor) { g.addGameButton(absendenButton, g.STR.ABSENDEN, buttonWidth - 2, 23, 'loginButton', 'contactAbsendenButton').addClass('center'); absendenButton.find('.loginButton').css({'background-color': buttonColor}); } else { g.addButton(absendenButton, g.STR.ABSENDEN, buttonWidth, '/img/icon_ok.gif', 'contactAbsendenButton', 'buttonI2'); }
$('#contactWindowEmail').on('blur', function() { g.reportWindowCheckEmail($('#contactWindowEmail'), $('#contactEmailStatus')); });
$('#contactWindowEmail').focus();
absendenButton.on('click', function() { if (contactRecaptchaResponse.trim().length === 0) { $('#contactRecaptchaInfoText').css({'visibility':''}); } else { $('#contactRecaptchaInfoText').css({'visibility':'hidden'});
$('#contactWindowEmail').focus(); if (g.reportWindowCheckEmail($('#contactWindowEmail'), $('#contactEmailStatus'))) { $('#contactWindowBeschreibung').focus(); if (g.reportWindowCheckBeschreibung($('#contactWindowBeschreibung'), $('#contactWindowBeschreibungStatus'))) { document.getElementById("contactForm").submit(); } } } });
// ReCaptcha var contactRecaptchaResponse = '';
var contactRecaptchaVerifyCallback = function(response) { if (console) console.log('contact g-recaptcha-response: ' + response); contactRecaptchaResponse = response; $('#contactRecaptchaInfoText').css({'visibility': 'hidden'}); };
var onloadCallback = function(response) { if (console) console.log('calling grecaptcha.render'); grecaptcha.render('contactReCaptcha', {'sitekey': '6Lcc_iUTAAAAAGthZVC1uqSbpaBtqjGM_zuzQbfH', 'theme': 'light', 'callback': contactRecaptchaVerifyCallback}); };
© Edencity.de