How do i add this tag?

Bronze Contributor
Bronze Contributor

How do i add this tag to Tealium iQ There' no documentation on how to add tags like below.

<!-- Click4Assistance Chat Button Script -->
<p><a target="_blank"><img src="https://prod3si.click4assistance.co.uk/Button/DynamBtn.aspx?..." border="0" alt="Live Chat Software by Click4Assistance UK" /></a></p>
<!-- Click4Assistance Chat Button Script -->

Since this is a public form, I removed the details that are specific to your pixel. -David Creason

2 REPLIES 2

How do i add this tag?

Tealium Expert
Tealium Expert

Hi @Donaldo I'm sure there's multiple ways to handle this.

I'll tell you how I did something similar and you can try it on your end, and others here can chime in with other ideas.

I added an Extension which checked to determine the current page template and if it was, then I appended the tag to a certain DIV on the page (#body-container in this case)

if(utag.data['dom.url'].toString().toLowerCase().indexOf('/articles/'.toLowerCase())>-1){  
  $( "#body-container" ).append( "<div id='ds_default_anchor'>YOUR CONTENT HERE</div>" );
}

You'll likely need to change this sample to suit your situation, but it should get you started. Let us know how it goes!

 

 

Tealium Expert

How do i add this tag?

Employee Emeritus

@Donaldo you can use a Tealium Pixel Contains, setup instructions are available here: https://community.tealiumiq.com/t5/Tags/Tealium-Pixel-Container-Tag/ta-p/13388

 

 

Public