Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google Analytics Code Explanation

Can someone explain this code 'step by step','line by line'? I would like to learn more about Asynch code and how Google loads their script, how to 'hide' javascrippt from users (I know that I can't hide it but at least make it something like Google does, not to show all code in one file)

<script>   (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){   (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),   m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)   })(window,document,'script','//www.google-analytics.com/analytics.js','ga');    ga('create', 'UA-xxxxxxxx-x', 'xxxxxx.com');   ga('send', 'pageview'); </script> 
like image 507
Milos Miskone Sretin Avatar asked Mar 28 '14 15:03

Milos Miskone Sretin


People also ask

What is a Google Analytics code?

What Is the Google Analytics Tracking Code? Google Analytics' tracking code (or ID) is a unique identifier that allows Google Analytics to collect data when inserted into a website. This data includes the time users spend on a webpage, search terms used, and how they came to the site.

What is Google Analytics code made of?

Google Analytics is implemented with "page tags", in this case, called the Google Analytics Tracking Code, which is a snippet of JavaScript code that the website owner adds to every page of the website.


2 Answers

First of all, I would pass this through a beautifier, e.g. http://jsbeautifier.org/

 (function (i, s, o, g, r, a, m) {      i['GoogleAnalyticsObject'] = r;      i[r] = i[r] || function () {          (i[r].q = i[r].q || []).push(arguments)      }, i[r].l = 1 * new Date();      a = s.createElement(o),      m = s.getElementsByTagName(o)[0];      a.async = 1;      a.src = g;      m.parentNode.insertBefore(a, m)  })(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');   ga('create', 'UA-xxxxxxxx-x', 'xxxxxx.com');  ga('send', 'pageview'); 

After that lets evaluate the closure

(function (i, s, o, g, r, a, m) { ...  })(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga'); 

by replacing each of the named parameters: i, s, o, g, r with their corresponding values window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga'

Note that a and m parameters do not have input values and are more like result variables.

This would be roughly (not bothering about variable scope, etc.) equivalent to

(function (i, s, o, g, r, a, m) {      window['GoogleAnalyticsObject'] = 'ga';      window['ga'] = window['ga'] || function () {          (window['ga'].q = window['ga'].q || []).push(arguments)      }, window['ga'].l = 1 * new Date();      a = document.createElement('script'),      m = document.getElementsByTagName('script')[0];      a.async = 1;      a.src = '//www.google-analytics.com/analytics.js';      m.parentNode.insertBefore(a, m)  })(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');   ga('create', 'UA-xxxxxxxx-x', 'xxxxxx.com');  ga('send', 'pageview'); 

In short what this code does in essence, is that it creates a new script tag with the line:

a = document.createElement('script'), 

Then finds the first script tag

m = document.getElementsByTagName('script')[0]; 

Then it sets the newly created script tag to asynchronous execution (More insight on async execution could be obtained at Understanding Asynchronous Code in Layman's terms should you need it)

a.async = 1; 

1 in the line above is equivalent to true, it is used 1 just because it is shorter.

After that the src of this script tag is set

 a.src = '//www.google-analytics.com/analytics.js'; 

Note that above no protocol (http or https) is specified in the URL. This would allow for the script to be loaded in the current browser protocol.

And finally it is inserted before the first script tag, so the browser could start loading it.

 m.parentNode.insertBefore(a, m) 

So to summarize:

  1. We create a script tag
  2. We set it to load asynchronously async=true
  3. We insert this script tag, before the first script tag in the document

Specifics related to google analytics.

 window['ga'] = window['ga'] || function () {      (window['ga'].q = window['ga'].q || []).push(arguments)  }, window['ga'].l = 1 * new Date(); 

defines global function named ga that pushes its arguments in a queue Array (named q)

Then with the lines

 ga('create', 'UA-xxxxxxxx-x', 'xxxxxx.com');  ga('send', 'pageview'); 

it pushes these "events" in the queue Array.

When the script is loaded, it checks the value of GoogleAnalyticsObject, which earlier was set to point to the name of ga with the line

 window['GoogleAnalyticsObject'] = 'ga'; 

Hope this helps

like image 73
Zlatin Zlatev Avatar answered Sep 27 '22 23:09

Zlatin Zlatev


Google has published the un-minified version of this code:

<!-- Google Analytics --> <script> /**  * Creates a temporary global ga object and loads analytics.js.  * Parameters o, a, and m are all used internally. They could have been  * declared using 'var', instead they are declared as parameters to save  * 4 bytes ('var ').  *  * @param {Window}        i The global context object.  * @param {HTMLDocument}  s The DOM document object.  * @param {string}        o Must be 'script'.  * @param {string}        g Protocol relative URL of the analytics.js script.  * @param {string}        r Global name of analytics object. Defaults to 'ga'.  * @param {HTMLElement}   a Async script tag.  * @param {HTMLElement}   m First script tag in document.  */ (function(i, s, o, g, r, a, m){   i['GoogleAnalyticsObject'] = r; // Acts as a pointer to support renaming.    // Creates an initial ga() function.   // The queued commands will be executed once analytics.js loads.   i[r] = i[r] || function() {     (i[r].q = i[r].q || []).push(arguments)   },    // Sets the time (as an integer) this tag was executed.   // Used for timing hits.   i[r].l = 1 * new Date();    // Insert the script tag asynchronously.   // Inserts above current tag to prevent blocking in addition to using the   // async attribute.   a = s.createElement(o),   m = s.getElementsByTagName(o)[0];   a.async = 1;   a.src = g;   m.parentNode.insertBefore(a, m) })(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');  // Creates a default tracker with automatic cookie domain configuration. ga('create', 'UA-XXXXX-Y', 'auto');  // Sends a pageview hit from the tracker just created. ga('send', 'pageview'); </script> <!-- End Google Analytics --> 

https://developers.google.com/analytics/devguides/collection/analyticsjs/tracking-snippet-reference

Zlatin's line by line explanation is still valid.

like image 34
broc.seib Avatar answered Sep 27 '22 23:09

broc.seib