Link Tracking issue with Safari | Community
Skip to main content
Level 2
October 16, 2015
Solved

Link Tracking issue with Safari

  • October 16, 2015
  • 1 reply
  • 1785 views

I am facing an issue in link tracking.

 

Issue:

   I have a link when user click on it, it will redirect to another page. for redirecting i am using call back function in s.tl. In safari i am not seeing HTTP 200 for the omniture call and loosing the tracking. If any help to resolve this would be appreciated. 

var s_code = s.tl(true, linkType, linkName, nullfunction () { document.location = href; });

 

Thanks,

Mahesh

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by jhammons-1

Try changing the first parameter from 'true' to 'this'

var s_code = s.tl(this, linkType, linkName, nullfunction () { document.location = href; });

Passing 'true' disables the (up to) 500 ms delay that helps make sure your image request goes through. More info here: http://microsite.omniture.com/t2/help/en_US/sc/implement/function_tl.html

1 reply

jhammons-1Adobe EmployeeAccepted solution
Adobe Employee
October 16, 2015

Try changing the first parameter from 'true' to 'this'

var s_code = s.tl(this, linkType, linkName, nullfunction () { document.location = href; });

Passing 'true' disables the (up to) 500 ms delay that helps make sure your image request goes through. More info here: http://microsite.omniture.com/t2/help/en_US/sc/implement/function_tl.html