Open peterjaap opened 10 years ago
Twitter;
twttr.events.bind('follow', function(event) {
console.log(event);
var followed_user_id = event.data.user_id;
var followed_screen_name = event.data.screen_name;
ga('send', {
'hitType': 'social',
'socialNetwork': 'twitter',
'socialAction': 'follow', // maybe this is found in the event var as well? In order to make this function more generic
'socialTarget': 'http://mycoolpage.com',
'page': document.location.href
});
});
Other actions; tweet, retweet, favorite, unfollow
Pinterest;
Event.observe('a[data-pin-log="button_pinit"]', 'click', function(event) {
ga('send', {
'hitType': 'social',
'socialNetwork': 'pinterest',
'socialAction':'pin',
'socialTarget': 'http://mycoolpage.com',
'page': document.location.href
});
});
Other actions; repin (repin), embed_pin_text (follow)
Facebook;