No, if you disable cookies, Google Analytics will not track you.
Google Analytics tracks you by creating cookies (or using existing cookies that it finds). He then uses this cookie information in a request that he sends to http://google-analytics.com/__utm.gif
. This βrequestβ for __utm.gif
is how the data is transmitted to Google Analytics.
Googling is a bit complicated, as it basically just included information about the cookies themselves, and not about what happens when they are disabled.
So, I did an experiment to prove it. I loaded StackOverflow into a new FireFox installation with cookies disabled.
The following is a list of HTTP requests. Please note that it downloads ga.js
, a Google Analytics script that is trying to track you. But the __utm.gif
request __utm.gif
not executed. ga.js just starts, realizes that it is not possible to create cookies, and as a result there is no way to create a βstateβ from viewing the page to viewing the page.
Without cookies, Google Analytics will treat each hit as its own visit, and each of these visits will be a rebound. This data would be useless. As a result, GA makes the logical choice of simply not tracking these people.
Yahel source share