Noticed today that the web pages of 13datacenter.com have the following code, apparently a tracking cookie for google analytics (and there are of course no adverts on 13datacenter.com):
I can't think of a legitimate purpose for google to track my visits to 13datacenter.com, can you?
Just to be safe I'm going to implement the workaround mentioned here
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-1457893-1");
pageTracker._trackPageview();
} catch(err) {}</script>
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-1457893-1");
pageTracker._trackPageview();
} catch(err) {}</script>
Just to be safe I'm going to implement the workaround mentioned here
Comment