Skip to content

Instantly share code, notes, and snippets.

@szeidler
Created June 5, 2018 14:11
Show Gist options
  • Save szeidler/0616213d42c6c6c4dfef3929e635d1ca to your computer and use it in GitHub Desktop.
Save szeidler/0616213d42c6c6c4dfef3929e635d1ca to your computer and use it in GitHub Desktop.
Google Analytics Opt-Out Link
<script>
var gaProperty = 'UA-123456789-1';
var 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;
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment