I use google analytics given code with links that look like this <a href="http://www.abc.com/" onClick="javascript: pageTracker._trackPageview('/outgoing/link1');" >link title </a> But on the site where I am using this code I see no clicks on links/banners which is kind of impossible because that site is very busy site and people must be clicking on the links. I think this code is no more working, may be google has stopped supporting this code... etc What method do you use to analyze clicks on outbound links?
I used to have the same problem a couple of years ago. What I did was force the Javascript event to resolve before the visitor could navigate away from the page by using "return". <a href="..." onclick="return pageTracker._trackEvent('Outbound', 'Outbound:domain.com') ? true : true;"> Code (markup):