Integrate

To integrate this assistant into your website you need to place 2 html parts into your site
The div element will render the assistant. You can implement this separatly or together with the below js part.

<div id="weguide-assistant" class="weguide-assistant-container"></div>

Next integrate the JS files. Best is to put this at the end of your website.
Note: If you already use jQuery you can leave out the first code line.

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<script type="text/javascript" src="//app.weguide.io/assets/js/app.js"></script>
<link type="text/css" rel="stylesheet" href="///app.weguide.io/assets/css/app.css">

<script type="text/javascript">
if(weGuide){
weGuide.init({
"divId" : "weguide-assistant",
"lang" : "en-us",
"id" : 1,
"account" : "demo",
"disableTracking" : false,
});
}
</script>