Skip to content

Instantly share code, notes, and snippets.

@cgrymala
Created November 6, 2015 17:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cgrymala/5c2129002a9a55815886 to your computer and use it in GitHub Desktop.
Save cgrymala/5c2129002a9a55815886 to your computer and use it in GitHub Desktop.
Standard call for Google Analytics
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-[your-analytics-id]-1']);
_gaq.push(['_setDomainName', 'none']);
_gaq.push(['_setAllowLinker', true]);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
@cgrymala
Copy link
Author

cgrymala commented Nov 6, 2015

The latest version of FIrefox is presenting the ga object (after Analytics is blocked) as:

function i[r]<()

Other browsers (such as Chrome) are reporting the ga object as:

function (a){J(1);Z.D.apply(Z,[arguments])}

How can I determine, with JS, if the Analytics script has been blocked or not, based on the difference between those two object definitions?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment