Implementing Generic Tag

Silver Contributor
Silver Contributor

Hi, 

I'm trying to implement a container tag on our website and am having trouble determining the best template to use. 

The tag appears to be both an iframe within a script. I cannot find documentation regarding this type of tag 

 

  <script type="text/javascript">
    (function() {
    var FTcontainer = document.createElement("iframe");
    FTcontainer.type="html";
    FTcontainer.style.border="0px";
    FTcontainer.style.width="1px";
    FTcontainer.style.height="1px";
    FTcontainer.style.top="0px";
    FTcontainer.style.left="0px";
    FTcontainer.style.position="relative";
    FTcontainer.style.overflow="hidden";
    FTcontainer.src=("https:" == document.location.protocol ? "https://" : "http://") + "blank.blank.blank/EV/blank?CV5=<custom>";
    var FTc = document.getElementsByTagName("script")[0];
     FTc.parentNode.insertBefore(FTcontainer, FTc);
    })();</script>

Any guidance on the type of template I should use? 

1 REPLY 1

Implementing Generic Tag

Tealium Employee

Hi @MichaelG 

Thats an "iframe", so I would recommend add the Tealium Generic Tag, on the tag configuration, pick "iframe" from the type dropdown and add the URL.

Hope it helps

Thanks

Public