Passing back data element to third party tag | Community
Skip to main content
October 16, 2015
Solved

Passing back data element to third party tag

  • October 16, 2015
  • 1 reply
  • 1088 views

Hi there,

If I needed to pass back a data element to a third party tag, would I simply just use %dataelementname% ?

Would this be correct for the usage case?

EXAMPLE:
Data Element name: dl.purchaseID
Third party tag: <script src="https://smrtpxl.advertising.com/S?spid=215&ORD=%dl.purchaseID%" type="text/javascript"></script>

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 ParitMittal

Hi Emily,

To pass back  a data element to a third party tag, you can use use the below snippet of code in the Third party/ Javascript tab. 

<script id="id1" src="" type="text/javascript"></script> <script type="text/javascript"> (function(){ var str= "https://smrtpxl.advertising.com/S?spid=215&ORD="; var val=_satellite.getVar('dl.purchaseID'); str.concat(val); document.getElementById("id1").src= str; }());</script>

Please do let us know if you have any questions or queries

Thanks & Regards

Parit Mittal

1 reply

ParitMittal
ParitMittalAccepted solution
Level 10
December 22, 2015

Hi Emily,

To pass back  a data element to a third party tag, you can use use the below snippet of code in the Third party/ Javascript tab. 

<script id="id1" src="" type="text/javascript"></script> <script type="text/javascript"> (function(){ var str= "https://smrtpxl.advertising.com/S?spid=215&ORD="; var val=_satellite.getVar('dl.purchaseID'); str.concat(val); document.getElementById("id1").src= str; }());</script>

Please do let us know if you have any questions or queries

Thanks & Regards

Parit Mittal