top of page

Nieuwsberichten van Mr. Franklin

bottom of page
function checkCookieConsent() { console.log("checking cookies"); const cookieConsent = document.cookie.match(/wixCookieConsent=([A-Za-z0-9%_&=]*)/); // Controleer of cookie consent gegeven is voor Analytics if (cookieConsent && cookieConsent[1].includes('analytics')) { window.dataLayer.push({'event': 'gtm.cookieConsent', 'cookieStatus': 'analytics'}); } // Controleer of cookie consent gegeven is voor Marketing if (cookieConsent && cookieConsent[1].includes('marketing')) { window.dataLayer.push({'event': 'gtm.cookieConsent', 'cookieStatus': 'marketing'}); } } // Voeg een event listener toe om cookies bij te werken document.addEventListener('wixConsentUpdated', checkCookieConsent); // Zorg ervoor dat de cookie voorkeuren worden gecontroleerd bij het laden van de pagina window.addEventListener('load', checkCookieConsent);