Select Page

Heyoverlay integration

Sådan opsætter du integrationen til Heyoverlay.

Step-by-step guide

Dokumentation

<script id="HLOverlayScript">
 (function() {
    var s = document.getElementById('HLOverlayScript');
    var coreScriptTag = document.createElement('script');
    coreScriptTag.type = 'text/javascript';
    coreScriptTag.charset = 'utf-8';
    coreScriptTag.src = 'https://heyoverlay.com/js/core.js';
    var userScriptTag = document.createElement('script');
    userScriptTag.type = 'text/javascript';
    userScriptTag.charset = 'utf-8';
    var currentDomain = window.location.hostname
    if (currentDomain == 'www.domæne1.dk') {
        userScriptTag.src = 'https://heyoverlay.com/userscripts/userScriptForDomæne1.js';
        }
    if (currentDomain == 'www.domæne2.dk') {
        userScriptTag.src = 'https://heyoverlay.com/userscripts/userScriptForDomæne2.js';
        }
    s.parentNode.insertBefore(coreScriptTag, s);
    s.parentNode.insertBefore(userScriptTag, s);
    })();
</script>