Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

Please don\'t inject &lt;script&gt; into the <html> tag [Adobe Experience Cloud Debugger Chrome extension]

Avatar

Level 1

The chrome extension injects a <script> tag into the <html>, and not the <head> portion of the html. This is ugly, and makes other scripts that are initiated async also to be put in the <html> tag, because it detects it as the first script

 

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

firstScript.parentNode.insertBefore(element, firstScript);

0 Replies