Expand my Community achievements bar.

Join us on September 25th for a must-attend webinar featuring Adobe Experience Maker winner Anish Raul. Discover how leading enterprises are adopting AI into their workflows securely, responsibly, and at scale.

Mark Solution

This conversation has been locked due to inactivity. Please create a new post.

SOLVED

DTM - Attach click even to a link that doesn't have ID

Avatar

Level 2

Hi,

I have a page that has a link. Unfortunately the link does not have an ID and I can't add one (technical issues with CMS). I have jQuery/JS code that can listen for the link click and fire a pixel, but I'm not sure how to create the rule in DTM.

The jQuery is something like this:

$("a").click(function(){

    if($("a").attr('data-utc')=="12345")
       //Fire pixel    
});

Any idea how to create such custom rule in DTM?

1 Accepted Solution

Avatar

Correct answer by
Level 10

Hi Amin,

For your Use-case you can create  Create an Event based rule with Event type as "Click" and "Element or Tag Selector"  as  a and Please check the box to manually assign properties & attributes and then specify the attributes with their value. Please see the below snapshot for more help.

Thanks & Regards

Parit Mittal

View solution in original post

2 Replies

Avatar

Correct answer by
Level 10

Hi Amin,

For your Use-case you can create  Create an Event based rule with Event type as "Click" and "Element or Tag Selector"  as  a and Please check the box to manually assign properties & attributes and then specify the attributes with their value. Please see the below snapshot for more help.

Thanks & Regards

Parit Mittal

Avatar

Level 2

I used the above with regex and it worked. Thank you.