Mobile app version of vmapp.org
Login or Join

Login to follow query

More posts by @Tiffany637

1 Comments

Sorted by latest first Latest Oldest Best

 

@Smith883

Click Target: The target attribute of the clicked element.
Click URL: The HREF attribute of the clicked element, if any.


Per the link provided.

For a click URL it's associated with the HREF attribute of the clicked element or the link's destination. For the click target, its associated with the target attribute of the clicked element or specifies where to open the linked document. Which can be broken down to one of the following:


_blank
_parent
_self
_top
framename


Details for each attribute can be found here - www.w3schools.com/tags/att_a_target.asp
For Instance, let's take the HTML tag with the following syntax:

<a href="http://example.com/going-here" target="_blank">Click Me</a>


For the tag manager the "Click URL" would be example.com/going-here and the "Click Target" would be _blank. So let's say you have a condition setup to match all "Click URL" going to example.com and also open in a new tab in your browser, then this <a> tag would satisfy your condition.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme