Created
October 3, 2012 23:53
-
-
Save Ricardo-Diaz/3830639 to your computer and use it in GitHub Desktop.
JS: Google Analytics Snippet
This file contains hidden or 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
<!-- Asynchronous Google Analytics snippet. Change UA-XXXXX-X to be your site's ID. | |
mathiasbynens.be/notes/async-analytics-snippet --> | |
<script> | |
var _gaq=[['_setAccount','UA-XXXXX-X'],['_trackPageview'],['_trackPageLoadTime']]; | |
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0]; | |
g.src=('https:'==location.protocol?'//ssl':'//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