In the site catalyst documentation at https://developer.omniture.com/en_US/content_page/sitecatalyst-tagging/c-add-a-custom-event, site catalyst recommend that custom events (eg link clicked, video played, item "liked" in social media) are tracked with the implementation like:
function sendCallCenterData() {
s=s_gi(s_account);
s.events='event1';
s.eVar1='some text'
s.eVar2='some other text'
s.prop2=12345
s.linkTrackEvents='eVar1,eVar2,prop2,event1';
s.tl(true,'o','Call Center Link');
}
Is there an example or best practices on how to implement this in Tealium?
(preferably without using a heap of Javascript Code extensions)
Thanks
Sandra
... View more