Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

HI, I am using Google Analytics to track an event by click redirection. When anyone clicks on a link on my site, there is a Proxy where this code is there:

      var _gaq = _gaq || [];
      _gaq.push(['_setAccount', 'XXXX']);
      _gaq.push(['_trackPageview']);
      _gaq.push(['_trackEvent', 'XXXX', 'web_click', '', '1']);

      (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);
      })();

and after that the visitor is redirected.

The Problem is, that the event is not visible in Analytics ... why?

Thanks Nik

share|improve this question
Nik, can you give more details about your configuration? – yahelc Feb 15 '11 at 12:54
Well this is the configuration. I have searc and found this: andrewblock.net/2010/11/10/… . It seems that the event could be fired only by Event, click or load etc. Is this so? – Nik Feb 15 '11 at 13:19

1 Answer

That last parameter to _trackEvent must be an integer. Not a String. An Event with a String as the last parameter will be ignored without any warning.

Note that it must be an integer. A floating point number will also be ignore in the same way.

  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'XXXX']);
  _gaq.push(['_trackPageview']);
  _gaq.push(['_trackEvent', 'XXXX', 'web_click', '', 1]);

  (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);
  })();
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.