I tried to analyse how google is transfering data. Especialy the document.referer.

for me its not ajax (firebug do not show any ajax activity).

PHP do not show the $_SERVER['HTTP_REFERER'] very reliable

Any idea?

Is there a uncompressed sourcecode of the ga.js in the world?

link|improve this question
feedback

3 Answers

Use Javascript unpacker and beautifier for the unpack.

link|improve this answer
nice tool I didn't know it Thanks – hamburger Jan 27 '11 at 11:40
feedback

Instead of including ga.js try using http://www.google-analytics.com/u/ga_debug.js

It is still minified and compressed, but it does have plenty of logging and debugging info

http://code.google.com/apis/analytics/docs/tracking/gaTrackingTroubleshooting.html#gaDebug

link|improve this answer
feedback
for me its not ajax (firebug do not show any ajax activity).

Just pay attention... look at the JS tab or Firebug.

You are adding http://www.google-analytics.com/ga.js in your page.

So, even before the page is loaded, googgle-analytics server already got a request sent to it :) There is no need to use ajax.

And you can beautify ga.js using the tool Adnan has mentioned in his answer to see what the ga.js does after it is loaded

==== EDIT ==== enter image description here

link|improve this answer
1  
Hello again, I'am using firbug where i can see all GET in the Console tab. But i do not see something from ga.js where i have to look there? – hamburger Jan 27 '11 at 11:38
I have edited the answer and added a screenshot. Don't look into Console tab. Look under [Net > All] – Sarwar Erfan Jan 27 '11 at 11:58
it's time thats the stupid get it. I have it!! Thanks again – hamburger Jan 27 '11 at 14:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.