DavenDaven Documentation

Manual integration

Installation

Insert this snippet just before the closing </body> tag, or in the <head> section of your page. Then replace YOUR_CUSTOMER_TRACKING_ID with your customer tracking id.

<script title="Daven" crossorigin="anonymous" async>
  var customerTrackingId = 'YOUR_CUSTOMER_TRACKING_ID';
  var DDScript = document.createElement('script');
  var date = new Date();
  DDScript.type = 'text/javascript';
  DDScript.src = 'https://symposium.dashboard.davenhr.com/tag?customerTrackingId=' + customerTrackingId + '&timestamp=' + date.getTime();
  DDScript.setAttribute('title', 'Daven Script');

  var target = document.body || document.head || document.documentElement;
  target.appendChild(DDScript);
</script>

On this page