Skip to content

Instantly share code, notes, and snippets.

@ulgoon
Created February 7, 2017 14:53
Show Gist options
  • Save ulgoon/d243a5d2d8abedba13ae60f40ec043d1 to your computer and use it in GitHub Desktop.
Save ulgoon/d243a5d2d8abedba13ae60f40ec043d1 to your computer and use it in GitHub Desktop.
GAintamplate script
function hasAnalyticsGoogle(){
var scripts = document.getElementsByTagName('script'),
ga = true, ua = true, dc = false,
i, len, s;
len = scripts.length;
if (ga || ua || dc) {
for (i = 0; i < len; i += 1) {
s = scripts[i].src;
if (
(ga && s.indexOf('google-analytics.com/ga.js')>-1) ||
(ua && s.indexOf('google-analytics.com/analytics.js')>-1) ||
(dc && s.indexOf('doubleclick.net/dc.js')>-1)
) {
return true;
}
}
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment