OpinionLab deployment in DTM: who successfully implemented this. | Community
Skip to main content
alla_omelchenk1
Level 2
October 16, 2015
Solved

OpinionLab deployment in DTM: who successfully implemented this.

  • October 16, 2015
  • 2 replies
  • 1465 views

Previously the Opinion lab was set via page load rule with non-sequential javascript which looked like that:

(function () {
        // MAIN OL ENGINE 
        var voc2 = document.createElement("script");
        var b = document.getElementsByTagName('body')[0];
        voc2.language = "javascript";
        voc2.type = "text/javascript";
        voc2.charset = "windows-1252";
        
        voc2.src = "//xx-tagging.s3.amazonaws.com/onlineopinionV7/oo_engine_invite.min.js";
    
        b.appendChild(voc2, b);
    }());

 

As Opinion Lab changed their set up now I need to load three new files via DTM: oo_engine.js, oo_config.js and oo_style.js . Is the best to host the files locally and reference them like shown above or place the actual code in the three separate page load rules? I'd really appreciate if anybody could share their experience. Also I need to make sure the engine file is loaded prior the configuration file. What is the best way to achieve this?

Thanks in advance

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by mikethompson1

We put the content of the .js files in a third party tag with sequential javascript (you can order them in there by dragging them around so the oo_engine fires first) in a page load rule triggered on top of the page. You should probably load all the files from the same page load rule in order to get the sequencing correct.

2 replies

mikethompson1Accepted solution
Level 4
October 16, 2015

We put the content of the .js files in a third party tag with sequential javascript (you can order them in there by dragging them around so the oo_engine fires first) in a page load rule triggered on top of the page. You should probably load all the files from the same page load rule in order to get the sequencing correct.

alla_omelchenk1
Level 2
October 16, 2015

Thanks. I will try it.