According to Google Analytic's documentation on social tracking, I'm supposed to run this code to notify GA when there's been a tweet:

twttr.events.bind('tweet', function(event) {
  if (event) {
    var targetUrl;
    if (event.target && event.target.nodeName == 'IFRAME') {
      targetUrl = extractParamFromUri(event.target.src, 'url');
    }
    _gaq.push(['_trackSocial', 'twitter', 'tweet', targetUrl]);
  }
});

However, I get an error stating twttr is not defined. How do I get notified of a tweet from my tweet button on my site so that I can track it?

link|improve this question

70% accept rate
Are you defining extractParamFromUri? that's a custom function they provide, not a native one. – yahelc Sep 5 '11 at 17:00
Yes I did define that, I did get this working somehow. For some reason I was getting an error about twttr not being defined, but that error went away and it's all working now... Maybe a caching issue of some kind. – at. Sep 5 '11 at 17:07
feedback

1 Answer

up vote 1 down vote accepted

Verify you have included the correct code for the twitter button?describe here

After that open up the console on firebug and write twttr and hit enter. It should return the twttr Object.

enter image description here

If not verify that your tracking code is below the twitter include script (the one that actually creates the twttr Object)

HTH

link|improve this answer
I do have the correct code for the twitter button as the twitter button looks and functions properly. But if I write twttr in Firebug's or Chrome's console, it says twttr is not defined. Strange though I just checked now and I do in fact get an object back! – at. Sep 4 '11 at 18:13
can you provide link to working code? – Dimitris Maniatis Sep 5 '11 at 10:36
It's all working now thanks. I guess some kind of caching issue, but the webpage is able to see the twttr variable and everything works. – at. Sep 5 '11 at 17:08
feedback

Your Answer

 
or
required, but never shown

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