Adobe Analytics link type (pe)

Gold Contributor
Gold Contributor
I want to set extensions based on the value of Adobe Analytics link type, that is, the value of "pe" when s.tl() is fired. Is there an existing utag element that I can hook into?
4 REPLIES 4

Adobe Analytics link type (pe)

Employee Emeritus
Hi Patrick, Can you please provide a little more detail? Are you running the Adobe Tag through TIQ or are you loading the s_code?

Adobe Analytics link type (pe)

Gold Contributor
Gold Contributor
Yes the AA tag is through TIQ.

Adobe Analytics link type (pe)

Gold Contributor
Gold Contributor
Also, if it makes a difference, I'm using App Measurement Library for JS on the site I'm specifically looking at.

Adobe Analytics link type (pe)

Employee Emeritus
Hi Patrick, Our tag template creates a link_type data source by default. You can declare this as a data source in TIQ, then utilize it in extensions with it equals "download link" or "exit link." Here is an example snippet from our template. Does this help? if (!u.o.linkType) u.o.linkType = 'o'; if (b.link_name) b.link_text = b.link_name; b.link_text = (b.link_text) ? b.link_text : "no link_name"; if (b.link_type == 'exit link') { u.o.linkType = 'e' } else if (b.link_type == 'download link') u.o.linkType = 'd';
Public