I am trying to setup event tracking for file downloads in Google Analytics. After some research I added the following code to the link that needs to be tracked:
<a onclick="_gaq.push(['_trackEvent','Download','PDF',this.href]);" href="http://www.link.com/file.pdf" target="_blank">Link Text</a>
The following code is on the page for Google Analytics:
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-9999999-1");
pageTracker._trackPageview();
} catch(err) {}
</script>
This has been active for over 48 hours but I'm not getting events in GA. It says that "13 of your visits sent events" but displays no other information. Any ideas?