Expand my Community achievements bar.

SOLVED

Optimize adobe dynamic tag management javascript file

Avatar

Level 2

Hello All,

How I can optimize the adobe dynamic tag management javascript which loads with the DOM as http://assets.adobedtm.com/ ?

for Example the url looks like this, below url is just sample url. Currently it is taking 22 seconds to load and it is on the top of the page.

<script src="//assets.adobedtm.com/987987249743947/satelliteLib-9879792379723957923579257957.js"></script>

1 Accepted Solution

Avatar

Correct answer by
Level 4

Hi,

You will most likely need to do the following:

Go to the network tab and filter for calls being made by the assets.adobedtm.com and look at what scripts are taking so long to execute.

Get access to your DTM, allocate the tags (assuming it's due to a cookie look up code that is causing delays) and see if you can replace it with a image tag instead of JS. Normally you can reach out to the vendors/agencies of the tags and have them send a image tag (pixel based solution) that you can use.

Could also try moving the tags to the bottom of page, so they don't interfere with the performance on the page?

If none of the above is true and it's actually "assets.adobedtm.com" that is slow in response, you could host DTM on your own servers, but doubt, that it's the case.

/Waqas

View solution in original post

1 Reply

Avatar

Correct answer by
Level 4

Hi,

You will most likely need to do the following:

Go to the network tab and filter for calls being made by the assets.adobedtm.com and look at what scripts are taking so long to execute.

Get access to your DTM, allocate the tags (assuming it's due to a cookie look up code that is causing delays) and see if you can replace it with a image tag instead of JS. Normally you can reach out to the vendors/agencies of the tags and have them send a image tag (pixel based solution) that you can use.

Could also try moving the tags to the bottom of page, so they don't interfere with the performance on the page?

If none of the above is true and it's actually "assets.adobedtm.com" that is slow in response, you could host DTM on your own servers, but doubt, that it's the case.

/Waqas