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?

extractParamFromUri? that's a custom function they provide, not a native one. – yahelc Sep 5 '11 at 17:00twttrnot 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