almai
4/9/2018 - 9:44 PM

Google Analytics Opt Out

var gaProperty = 'UA-83288362-1',
    disableStr = 'ga-disable-' + gaProperty;

if (document.cookie.indexOf(disableStr + '=true') > -1) {
  window[disableStr] = true;
}

function gaOptout() {
  document.cookie = disableStr + '=true; expires=Thu, 31 Dec 2099 23:59:59 UTC; path=/';
  window[disableStr] = true;
  console.log("You've opted out!");
}

jQuery(document).ready(function() {
  jQuery( '#optOut' ).click(function(e) {
    e.preventDefault();
    gaOptout();
    alert('Sie haben sich erfolgreich von der Google Analytics Messung ausgeschlossen!');
  });
});