jQuery(document).ready(function ($) { var $root = $('html, body'); $('a.accompagna').on('click', function() { if (location.pathname.replace(/^\//,'') === this.pathname.replace(/^\//,'') && location.hostname === this.hostname) { var target = $(this.hash); target = target.length ? target : $('[name=' + this.hash.slice(1) +']'); if (target.length) { if ($(window).width() > 1200) { $('html, body').animate({ scrollTop: target.offset().top - 100 }, 1000); return false; } else { $('html, body').animate({ scrollTop: target.offset().top - 0 }, 1000); return false; } } } }); $(window).on('load', function() { if (window.location.hash && $(window.location.hash).length > 0) { if ($(window).width() > 1200) { $root.animate({ scrollTop: $(window.location.hash).offset().top - 100 }, 600); } else { $root.animate({ scrollTop: $(window.location.hash).offset().top - 0 }, 600); } } }); $('.ottieni-ebook').click(function() { $('#apri-ebook').click(); }); function infoAggiornate(e) { swal({ type: 'success', text: e, timer: 1500, showConfirmButton: false }) }; if ($("#contattiForm").length > 0) { // needs for recaptacha ready grecaptcha.ready(function () { // do request for recaptcha token // response is promise with passed token $('#contattiForm').parsley().on('form:error', function () { swal({ title: "AVVISO_ERRORE", text: "AVVISO_ERRORE_CAMPI_OBBLIGATORI", type: "error", showConfirmButton: true }); }).on('form:submit', function () { grecaptcha.execute('6LcMuL0UAAAAAOLC0XucJrcZ7GoL5KJvx3zCXqUk', {action: 'homepage'}) .then(function (token) { // add token to form document.getElementById('g-recaptcha-response').value = token; form = $('#contattiForm'); $.ajax({ url: "https://www.coachmarcobertan.it/mail/invia.php", type: "POST", data: form.serialize(), success: function (data) { if (data.status == "success") { infoAggiornate(data.message); setTimeout(function () { window.location = 'https://www.coachmarcobertan.it/grazie-per-avermi-contattato' }, 2000); } else if (data.status == "error") { swal({ title: "Errore", text: data.message, type: "error", showConfirmButton: true }); return false; } }, }); }); return false; }); }); } if ($("#ebookForm").length > 0) { // needs for recaptacha ready grecaptcha.ready(function () { // do request for recaptcha token // response is promise with passed token $('#ebookForm').parsley().on('form:error', function () { swal({ title: "AVVISO_ERRORE", text: "AVVISO_ERRORE_CAMPI_OBBLIGATORI", type: "error", showConfirmButton: true }); }).on('form:submit', function () { grecaptcha.execute('6LcMuL0UAAAAAOLC0XucJrcZ7GoL5KJvx3zCXqUk', {action: 'homepage'}) .then(function (token) { $.fancybox.close(); // add token to form document.getElementById('g-recaptcha-response2').value = token; form = $('#ebookForm'); $.ajax({ url: "https://www.coachmarcobertan.it/mail/invia.php", type: "POST", data: form.serialize(), success: function (data) { if (data.status == "success") { infoAggiornate(data.message); setTimeout(function () { window.location = 'https://www.coachmarcobertan.it/' }, 2000); } else if (data.status == "error") { swal({ title: "Errore", text: data.message, type: "error", showConfirmButton: true }); return false; } }, }); }); return false; }); }); } });