Expand my Community achievements bar.

SOLVED

How to embed "script src" i DTM

Avatar

Level 1

Hi,
I' trying to embed to following code:

<script src="//static.whisbi.com/common/tools/whisbi-tools.js"></script>

<script>
whisbiTools.whisbiOnAir(
{ lang: 'DK', woaGuid: 'xxx', woaBranchGuid: 'yyy' }
);
</script>
But DTM do not like the <script> tag, so how to embed a javascript src. ?
script src="//static.whisbi.com/common/tools/whisbi-tools.js"></script>

1 Accepted Solution

Avatar

Correct answer by
Level 1

Problem solved by using another methode without script tag

var whisbiTag = document.createElement("script");
whisbiTag.async = "true";
whisbiTag.src = “//xx.js”;

Thanks,

Peter

View solution in original post

2 Replies

Avatar

Level 10

Hi,

Can I ask you where in the interface you are trying to embed this tag? If this is a page load rule, the third-party sequential HTML section should allow this. You could also try placing this inside one of the tools in the same section.

Typically, JavaScript would go in one of the JavaScript sections. However, if the <script> tag is needed, you'll need to place it in the sequential HTML section as referenced in the following documentation.

https://marketing.adobe.com/resources/help/en_US/dtm/load_order.html

"Sequential HTML: Injected into <HEAD/> below DTM library include script if <SCRIPT/> tags are used, otherwise is injected at top of <BODY/>"

Cheers,
Jantzen

Avatar

Correct answer by
Level 1

Problem solved by using another methode without script tag

var whisbiTag = document.createElement("script");
whisbiTag.async = "true";
whisbiTag.src = “//xx.js”;

Thanks,

Peter