Skip to content

Instantly share code, notes, and snippets.

@ortense
Created November 28, 2014 14:56
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ortense/fd0482ddfa1600eba6cb to your computer and use it in GitHub Desktop.
Save ortense/fd0482ddfa1600eba6cb to your computer and use it in GitHub Desktop.
Check If Google Analytics Script Is In The Page Template
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