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
Post a Comment