If I have html like the following on my own site how come it is able to track the event? Is it possible that browser starts loading the http://google.com in the same window before the tracking request is made as it is asynchronous?
<a href="http://google.com" onclick="_gaq.push(['_trackEvent', 'category', 'event']);">click</a>
In case of using the synchronous API the browser obviously waits until the script in the onclick is ran, but I can't wrap my head around this one.