Does someone knows how to use Google Social Interaction Analytics with the Tumblr share button? (which is hosted on my Wordpress blog)

I've done it for Facebook and Twitter (i.e: http://visualise.ca/anne-au-cherry)

There is no information about in google's docs : http://code.google.com/apis/analytics/docs/tracking/gaTrackingSocial.html

P.S.: What about the Pinterest button? ;-)

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

The Tumblr Share button doesn't have any callbacks for completing the share. However, its just a link to another page. So, you can trivially add click-tracking to it:

$(".tumblr a").click(function(){
   _gaq.push(["_trackSocial", "Tumblr", "Click"]);
});

The Pinterest Pin It button is in an iframe, has no JS API, no click tracking, no "on pin" callback. So, you're lost there in terms of tracking.

link|improve this answer
Thank you for your help! Using the same Tumblr method on Pinterest is no good? It is also a link. <a href="pinterest.com/pin/create/button/?url=http://visualise.ca/…; class="pin-it-button" count-layout="horizontal">Pin It</a> <script type="text/javascript" src="assets.pinterest.com/js/pinit.js"></script>; – Gab Feb 13 at 1:32
1  
That JavaScript converts the link into an iframe, which is out of the scope of what you can access. – yahelc Feb 13 at 1:34
Thank you very much! – Gab Feb 13 at 1:42
feedback

Your Answer

 
or
required, but never shown

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