How to pass custom event with exit link in Adobe Launch | Community
Skip to main content
balakrishnad200
Level 3
February 13, 2020
Solved

How to pass custom event with exit link in Adobe Launch

  • February 13, 2020
  • 1 reply
  • 4171 views

Hi All,

I have couple of exit links ex: www.abc.com, www.cab.com on my website. I have already enabled
Track outbound links in the configuration section. Can someone help me how to fire a success event whenever user click these links in Adobe Analytics through Adobe Launch. Thanks in advance !!

 

Thanks,

BK

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 Andrey_Osadchuk

There are two options:

1) set up a rule that will trigger on link click; check the URL belongs a third-party domain; set the variables 

2) add a code inside s_doPlugins to check s.linkType value. When its value is set to "e", populate an event.

1 reply

Andrey_Osadchuk
Andrey_OsadchukAccepted solution
Level 10
February 14, 2020

There are two options:

1) set up a rule that will trigger on link click; check the URL belongs a third-party domain; set the variables 

2) add a code inside s_doPlugins to check s.linkType value. When its value is set to "e", populate an event.

balakrishnad200
Level 3
February 18, 2020

Hi MVP,

 

I have used the second option the event is getting triggered on exit link along with all the page as default. Can you help me how to suppress the event from all pages.

 

s.linkTrackEvents="x";
s.events="eventx";
s.doPlugins = function(s) {
if (s.linkType === 'e') { // this checks if this call is an exit link call.
s.events="eventx";
}
}