top of page

How to implement cookie consent with Cookie information

  • Customer Success Team
  • 4 days ago
  • 1 min read

Use Cookie information's custom event listeners to ensure the Extellio script won't set cookies prematurely. The event listener runs when consent is set or changed. It means that if the visitor changes their consent through their visit, the event listener will prevent the Extellio script from setting cookies. 


You can use the CookieInformationConsentGiven event listener: 

<script>


window.addEventListener('CookieInformationConsentGiven', function(event) { if (CookieInformation.getConsentGivenFor('cookie_cat_statistic')) {   extellio_actions.push(['rememberCookieConsentGiven']);

} else {

extellio_actions.push(['forgetCookieConsentGiven']);}

}, false);


</script>


* Note, this only affects the statistical cookies. If you use surveys, functional cookies that prevent the survey from triggering multiple times will still be set. GDPR and privacy-friendly!

Related Posts

See All
How to analyze user journeys

One of the strengths of combining the Extellio products is that you are able to not only analyze parts of a user journey, but the full user journey. By using surveys, you can learn who the visitors ar

 
 
How to turn on multi-factor authentication (MFA)

Multi-factor authentication requires users to input a verification code at each login.  The verification code will be sent to your phone, making it difficult for anyone not authorized to access your a

 
 
Do you need all Extellio products?

As much as you may want to measure everything, it's not always possible. Budget limitations may come in the way and force you to prioritize. However, if you're new to analyzing websites or using servi

 
 
bottom of page