Working with Omniture?
Data not going through? Try adding a call to s.tl() to flush things out and make sure they’re sent to Omniture. It seems to not want to send certain custom events by default.
Data not going through? Try adding a call to s.tl() to flush things out and make sure they’re sent to Omniture. It seems to not want to send certain custom events by default.
May 13th, 2009 at 9:46 am
I’ve noticed that with s.tl(), you’ll need to open it up with trackLinkVars before setting custom props:
// reset the s variable
var s=s_gi(s_account);
// for the tl() calls you need to specify what vars you want to pass it.
s.linkTrackVars=”prop18,eVar17,events”;
s.linkTrackEvents=”event13″;
s.prop18 = ‘foo’;
s.eVar17 = ‘bar’;
May 13th, 2009 at 1:45 pm
Yep. I’m queuing up props/events/eVars separately first, then calling transmitting them with s.tl() when I’m done constructing them.
May 14th, 2009 at 5:25 pm
Also: set events and props to null if you want to clear them out and prevent them from being reported.