Skip to main content

Cross device support

Use the cross device support report and settings in Adtriba.

Note: Adtriba Core is a legacy feature that we continue to support but no longer sell. The latest version of this feature is available as Funnel Measurement.
If you are already using Funnel Measurement, find more information here. To upgrade, contact us.

To enable cross-device support, add the project sync option to the integration snippet.

Extend the integration snippet with the project sync option

<script type="text/javascript">  
(function(){  
    var id = "adtriba-js";  
    var init = document.getElementById(id);      if (!init) {  
        var a = document.createElement("script");  
        var s = document.getElementsByTagName("script")[0];          a.setAttribute("data-project-tracker-id", "YOUR_PROJECT_TRACKER_ID");  
        a.setAttribute("data-project-sync", "true");          a.type = "text/javascript";  
        a.async = true;  
        a.id = id;  
        a.src = "https://cdn.adtriba.com/v2/adtriba.js";  
        s.parentNode.insertBefore(a, s);  
    }      window.adtriba = window.adtriba || [];  
    window.adtriba.push(["pageview"]);  
})();  
</script>
Did this answer your question?