Back

This article shows how to set up and configure the Tealium Generic Tag, a one-size-fits-most generic tag container used for implementing almost any third-party vendor image, iframe, or script-style tag to your pages.

See Related

In this article:

Table of Contents Placeholder

Tag Types

This tag supports one of three types: image, iframe, or script. Identifying the type of tag you are working with is important, so here are some clues to look for when setting up your tag. If the code for your tag matches any of these patterns, then choose the corresponding tag type in the tag configuration.

Image

Image tag code snippets usually contain one of the following:

  •  new Image()
  •  <img src="https://
  •  document.write("<img src=" ... ">");

Iframe

Iframe tag code snippets usually contain one of the following:

  •  document.createElement('iframe')
  •  <iframe src="https://
  •  document.write("<iframe src=" ... "></iframe");

Script

Script tag code snippets usually contain one of the following:

  •  <script type="text/javascript" src="//example.com/tag.js"></script>
  •  document.createElement('script')

Tag Components

To configure the Generic Tag you will need to understand the following components that make up your tag.

Base URL

The base URL is the hostname, pathname, and file pointing to the location of the pixel. It does not include the "?" character or the query string parameters.

In our sample pixel above, the base url is: //www.example.com/tag.gif

Static and Dynamic Parameters

Many tags collect data by using the query string of the URL. These are the key/value pairs that appear in the URL after the "?" character. In our example the parameters are:

cid=112233&rg=us&rnd=' + rnd_nocache + '&ref=' + referrer

Static parameters have values that you can see in the snippet and do not change from page to page. In this example, the static parameters are:

  •  cid=112233
  •  rg=us

Dynamic parameters are values that change from page to page. In this example, the dynamic parameters are:

  •  rnd=
  •  ref=

Dynamic parameters can be configured using data mappings or using value substition

Cache Bust

It's common for vendor tags to require a cache bust variable in the query string. This value is randomly generated and added to URLs to prevent the browser from caching the request. Our example includes a cache busting variable called rnd.

This functionality is built into the Generic Tag. Simply enable the cache bust setting and specify the name of the cache bust parameter and the Generic Tag will generate and assign the random value for you.

Tag Configuration

First, go to the Tag Marketplace and add the Generic Tag to your profile (how to add a Tag?).

tealium-generic-tag-configuration.png

After adding the Tag, configure the below settings:

  • Title (required): The default is "Tealium Generic Tag". You may replace it with a custom name of choice.
  • Type (required): Select the type of tag.
  • Base URL (required): Enter the base url (excluding the protocol)
  • HTTPS URL: Use this field if the HTTPS url is different from the Base URL.
    • If the Base and HTTPS URL is the same, then add "//" as the prefix in the Base URL field and leave the HTTPS URL field empty. This tells the Tealium Generic Tag to apply HTTP and HTTPS appropriately based on the current location protocol.
    • If the URLs are different, set their respective fields.
  • Query String Delimiter: The delimiter character that separates the query string portion from the URL. The default is "?", but this can be changed.
  • Parameter Delimiter: The delimiter character that separates each key-value pair in the query string. The default is "&", but this can be changed.
  • Key/Value Delimiter: The delimiter character that separates a key from its value. The default is "=", but this can be changed.
  • Query String: Enter static and dynamic query string parameters using the delimiters defined.

Dynamic Value Substitution

This tag supports dynamic value substitution, which allows you to reference data layer variables directly in the Base URL, HTTPS URL, or Query String configuration fields. This provides the flexibility to create a dynamic tag based on your data layer. To use a data layer variable in a field, reference the variable name by surrounding it with "@@". For example, to insert a data layer variable named "account_id" into the path of the URL, enter a value like this: //example.com/path/@@account_id@@/i.gif

Each type of data layer variable can be substituted using the following prefixes:

  • Universal Data Object - @@variable@@
  • Javascript Page Variable - @@js_page.variable@@
  • Meta Tag - @@meta.variable@@
  • Querystring Parameter - @@qp.variable@@
  • Cookie Value - @@cp.variable@@

Load Rules

Load Rules determine when and where to load an instance of this Tag on your site.

Data Mappings

Mapping is the process of sending data from a Data Layer Variable to the corresponding destination variable of the vendor tag. For instructions on how to map a variable to a tag destination, see Data Mappings.

The Tealium Generic tag supports custom mappings only. You set a custom destination name in the text field.

All data mappings are appended to the query string parameter of the tag URL as key/value pairs.

Callback Function

If your tag requires code to run after the main library has loaded you can use the callback function.The Generic Tag defines an internal callback property named u.callback that you can redefine within a tag-scoped Javascript Code extension. Simply create a new extension, add your callback code, and scope it to the Generic Tag. This code will then run after the tag code has executed on the page.

The u.callback function cannot be used when the Generic Tag type is set to "image".

Example:

// Put this code in a Javascript Code extension scoped to the tag.
u.callback = function() {
console.log("The tag has loaded, now do cool stuff!");
}

generic-tag-callback-extension.jpg

Public