Skip to content

Instantly share code, notes, and snippets.

@thyngster
Created July 8, 2019 12:41
Show Gist options
  • Save thyngster/ff4be9fb38ab772e12fa1384dbbbcf43 to your computer and use it in GitHub Desktop.
Save thyngster/ff4be9fb38ab772e12fa1384dbbbcf43 to your computer and use it in GitHub Desktop.
if (window.fetch)
fetch('https://www.google-analytics.com/collect').then(function(response) {
if (!response.ok) {
throw Error(response.statusText);
}
return response;
}).then(function(response) {}).catch(function(error) {
window.dataLayer.push({
'event': 'ga-blocked'
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment