Expand my Community achievements bar.

SOLVED

Deploying Launch async - alternative tag syntax

Avatar

Level 9

So this new feature to deploy Launch async.

I see that it gives you a tag like this:

<script src="//assets.adobedtm.com/launch-12345-development.min.js" async></script>

From my perspective, I should be able to instead do something like this:

(function() {

  var s = document.createElement('script');

  s.src = "//assets.adobedtm.com/launch-12345-development.min.js";

  s.async=true;

  var t = document.getElementsByTagName('script')[0];

  t.parentNode.insertBefore(s, t);

})();

I want to be able to do this because it would allow me to dynamically output "12345" and/or "development" parts of the script URL - something that has been a sore spot with DTM for a lot of people.

Will Adobe support async deployment of the Launch script like this?

.josh

1 Accepted Solution

Avatar

Correct answer by
Employee

Yes. You can start using it that way right now if you choose.

View solution in original post

1 Reply

Avatar

Correct answer by
Employee

Yes. You can start using it that way right now if you choose.