Last active
December 13, 2015 18:38
-
-
Save YohannParis/4956700 to your computer and use it in GitHub Desktop.
Google Analytics snippet optimization.
Maybe don't do a big difference, but I liked leaner code.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
Optimizing the asynchronous Google Analytics snippet | |
http://mathiasbynens.be/notes/async-analytics-snippet | |
--> | |
<script> | |
var _gaq = [['_setAccount', 'UA-XXXXX-X'], ['_trackPageview']]; | |
(function(d, t) { | |
var g = d.createElement(t), | |
s = d.getElementsByTagName(t)[0]; | |
g.src = '//www.google-analytics.com/ga.js'; | |
s.parentNode.insertBefore(g, s); | |
}(document, 'script')); | |
</script> | |
<script>var _gaq=[['_setAccount','UA-XXXXX-X'],['_trackPageview']];(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];g.src='//www.google-analytics.com/ga.js';s.parentNode.insertBefore(g,s)}(document,'script'))</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment