Let me reformulate, as the answer http://stackoverflow.com/questions/951907/where-are-my-visitors-going was absolutely correct, but my question not precise enough ;)
How does one track with Java Script where the visitors are going? (From a technical standpoint.)
Is the idea to execute a code every time a link is pressed? If yes, does this have to be specified in the <a>
-tag itself, i.e., <a href="..." onmousedown="return mycode(this)">
, or can this be done globally without having to mention it for every link?
I don't want the specifics of any code (as there is GoogleAnalytics etc.), I just want to know generally how it could work.
Btw, you guys are really quick!