I have Google Analytics code that I added to my site (in PHP pages), and I also added code to track outbound links/events. The code was modified slightly, since I don't need it to wait a second before opening the links, since they're all being opened in a new window anyway.
The outgoing link are all working correctly.
For some reason though, the events aren't being tracked at all.
Here's the Analytics code in the header:
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-XXXXXXX-X']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<script type="text/javascript">
function recordOutboundLink(link, category, action) {
try {
var myTracker=_gat._getTrackerByName();
_gaq.push(['myTracker._trackEvent', category, action]);
}catch(err){}
}
</script>
And here is the code I have on each link:
<a href="http://sitelink.tld" target="_blank" onClick="recordOutboundLink(this, 'Outbound Links', 'http://sitelink.tld');">
Can someone help me figure out why the events wouldn't be showing up on the Analytics Events page?
Thanks a lot!