Track
Track Views
To track a screen view, create a TealiumView
object and pass it to the track()
method:
var view = TealiumView('VIEW_NAME', {'KEY': 'VALUE'});
Tealium.track(view);
Track Events
To track a non-view event, create a TealiumEvent
object and pass it to the track()
method:
var event = TealiumEvent('EVENT_NAME', {'KEY': 'VALUE'});
Tealium.track(event);
Was this article helpful?
This page was last updated: May 13, 2022