Google Analytics - Download clicks tracking

心已入冬 提交于 2019-12-12 02:34:43

问题


I'm trying to track download clicks with Google Analytics but nothing shows up in my statistics. (I've waited 4 days) This is my code:

HTML:

 <a onclick="javascript: pageTracker._trackPageview ('/download/version/black');" href="http://www.example.com/example.zip"  target="_blank">link text</a>

Google Analytics:

<script type="text/javascript">
  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-11111111-1']);
  _gaq.push(['_setDomainName', 'example.com']);
  _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>   

Why is it not working? Thanks. Uli


回答1:


You should use GA events for this.

Check the docs for the _trackEvent method.




回答2:


You have to push your tracking events to the globally available array:

<a onclick="javascript:_gaq.push(['_trackPageview', '/download/version/black']);" href="http://www.example.com/example.zip"  target="_blank">link text</a>

I think you are mixing two versions of the tracking API together..

Thanks!




回答3:


you're loading the async GA but trying to run the old urchin API.

<a href="foo.zip" onclick="_gaq.push(['_trackPageview', this.href]);">download</a>

should work just fine



来源:https://stackoverflow.com/questions/9278760/google-analytics-download-clicks-tracking

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!