So I am getting closer to getting the data to show in Adobe Analytics, @adrian_browning. I am currently using the following code
var facebookShare = document.getElementsByClassName('fb-social social-btn') for (var i in facebookShare) { facebookShare[i].onclick = function () { utag.data['adobe_eVars'] = 'eVar32' utag.data['adobe_event'] = 'event19' utag.data['adobe_event_type'] = 'facebook_share' utag.link({ linkTrackVars: utag.data['adobe_eVars'], linkTrackEvents: utag.data['adobe_event'], link_text: utag.data['adobe_event_type'], action: utag.data['adobe_event_type'] }), null, []; }; };
Using the above code, in console when I type s.linkTrackVars I get "eVar32",
When I type utag.data.adobe_event_type I get "facebook_share",
I have my mapping in Tealium IQ set to "adobe_event_type = eVar32"
But the connection is not being made so I dont see the data in adobe analytics, but the event19 code works perfectly ???
... View more