DTM: Non-Sequential HTML tag | Community
Skip to main content
Ridder_M
New Participant
October 16, 2015
Solved

DTM: Non-Sequential HTML tag

  • October 16, 2015
  • 1 reply
  • 1677 views

Hello,

I'm using a Non-Sequential HTML Javascript/Third Party tag, where I'm using the following script to pass data to a 3rd party tag.

<script>x = _satellite.getVar('Sub-Total');</script>

The problem that I have is that no data is passed to "x".

I have also tried the following:

<script>var x = $('td[data-hook="order_item_total"]').text().substring(1);</script>

In this case I'm getting $ is undefined. Note, both methods work when I test it in the Javascript console and if I use a Non-Sequential Javascript tag. What do I need to add to make either of these work? Your help is greatly appreciated.

Thanks,

Ridder

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by mikethompson1

Your non-sequential HTML tag is probably going into an iframe, so you might be seeing some issues around that.

For the first case, try referencing your variable as %Sub-Total% rather than using the getVar function.

1 reply

mikethompson1Accepted solution
New Participant
October 16, 2015

Your non-sequential HTML tag is probably going into an iframe, so you might be seeing some issues around that.

For the first case, try referencing your variable as %Sub-Total% rather than using the getVar function.