Triggering tags from the SPA page

Two of the more common methods for triggering a rule in Platform tags (and therefore sending data into Audience Manager), are:

  • Setting JavaScript custom events (see example HERE with Adobe Analytics)
  • Using a Direct Call Rule

In this Audience Manager example, you use a Direct Call rule in Platform tags to trigger the hit going into Audience Manager. As you’ll see in the next sections, this becomes useful by setting the Data Layer to a new value, so that it can be picked up by the Data Element in Platform tags.

Demo page

Here is a small page that demonstrates changing a value in the data layer and sending it into Audience Manager, as you may do on a SPA page. This functionality can be modeled for more elaborate changes needed. You can find this demo page HERE.

Setting the data layer

As mentioned, when new content is loaded on the page or when someone performs an action on the site, the data layer needs to be set dynamically in the head of the page BEFORE Platform tags are called and runs the rules, so that Platform tags can pick up the new values from the data layer and push them into Audience Manager.

If you go to the demo site listed above and look at the page source, you will see:

  • The data layer is in the head of the page, before the call to Platform tags
  • The JavaScript in the simulated SPA link changes the Data Layer, then calls Platform tags (the _satellite.track() call). If you were using JavaScript custom events instead of this Direct Call Rule, the lesson is the same. First change the data layer, and then call Platform tags.