javascript - Omniture tracklink canceled -


i trying track custom links using:

s.tl(this, 'o', 'trackingname') 

but tracking call keeps getting canceled (i checked in both firefox , chrome network utilily), loads link before request sent omniture.

i know s.tl() supposed have 500ms delay or until call completed, it's not doing it...

i using sitecatalyst code version: h.26.1

something may interrupting flow automatic exit link tracking, believe set s.trackexternallinks = true, tried set false before calling s.tl() still performing exit link tracking (the request completes successfully)

any clues?

yes, ran same bug. best solution seems increasing forcedlinktrackingtimeout 500 , creating custom function navigate:

s.forcedlinktrackingtimeout = 500;  function navigate(url) {   window.location.href = url; }  s.tl(this, "o", "trackingname", null, navigate(this.href)); 

Comments

Popular posts from this blog

c++ - CryptStringToBinary API behavior -

java.util.scanner - How to read and add only numbers to array from a text file -

iphone - Three second countdown in cocos2d -