Embedding a Chatbot on a Web Page Using a Simple JavaScript Snippet
This documentation aims to guide individuals through the process of embedding a chatbot on a web page using a simple a JavaScript snippet. We will explore different options for embedding the chatbot, launching the chatbot, and integrating the chatbot on your website.
\uD83D\uDCD8 Instructions: Embedding the Chatbot
To embed the bot, you will need:
An active Orbita account
An email from Orbita with your <Organization ID> and <Project ID>
An email from Orbita confirming your domain has been whitelisted
Whitelisting your site
Before you can embed your chatbot on a website, the website hosting the bot needs to be whitelisted. To whitelist your website:
Please send an email to your account rep with:
The name of your company
The website on which you will host the bot
To integrate the chatbot on your website, follow these steps:
Edit the Template - Edit the HTML template of the pages where you want the chatbot to be displayed. This may include your homepage, product pages, help pages, or any other relevant sections of your website.
Paste JavaScript Snippet in Page Footer. The email you receive will contain a snippet like this:
<div id="orbitabot"
data-orbita-init='chatbot'
data-orbita-project-id='[YOUR_PROJECT_ID]'
data-orbita-server-url='https://express.orbita.cloud'
data-orbita-custom-data = '{"org": "[YOUR_ORGANIZATION_TOKEN]"}'
data-orbita-bot-Settings='{"elementId": "orbitabot", "template": "express"}'></div> <script src="https://express.orbita.cloud/chatbot/v3/chat.js"></script>
Insert the JavaScript snippet you received via email in the edited template. The snippet may be placed anywhere within the HTML body.
Save and Publish Template - Save and publish the updated template(s) on your website. Once published, the chatbot will be live and functional, based on the selected launch option.
Refresh the web page - Refresh your web page, you should now see the chatbot icon appearing.
\uD83D\uDCD8 Instructions - Launching the Chatbot
There are three ways to launch the chatbot on your web page: auto-launch on page load, and launching on chatbot button click/tap. Each option offers a different user experience, allowing you to choose the method that best suits your website's needs.
Launching on Chatbot Button Click/Tap
In this case, the chatbot will launch only when a user clicks or taps on a designated chatbot button. This option gives users control over when they want to interact with the chatbot and can help reduce distractions on the page.
This is the default behavior of the chatbot.
No additional configuration required to enable this behavior.
Launching on Page Load
With this option, the chatbot will automatically launch and be visible to users as soon as the page loads. This can be useful for providing immediate assistance or information to your visitors.
Note: Using this configuration will automatically launch the chatbot only for Desktop site visitors, not mobile visitors.
To launch on Page Load, change the value of the “template” key of the data-orbita-bot-Settings attribute to “expressAutoLaunch”:
data-orbita-bot-Settings='{"elementId": "orbitabot", "template": "expressAutoLaunch"}'>
Launching with Peek View
To launch the bot in “peek view” mode, change the value of the “template” key of the data-orbita-bot-Settings attribute to “expresspeekview”:
data-orbita-bot-Settings='{"elementId": "orbitabot", "template": "expresspeekview"}'>
Launching with Google Tag Manager
In some situations it may be preferred to inject the code via Google Tag Manager. In these situations, it’s recommended that you instantiate the virtual assistant using the following approach, making sure to replace <Project ID> and <Org ID> with your project ID and organization ID.
<script src="/chatbot/v3/chat-core.js"></script> <script> OrbitaChatBotV3.init({ projectId: '<Project ID>', serverUrl: 'https://express.orbita.cloud', customData: { org: "<Org ID>" }, botSettings: { elementId: 'orbitabot', template: 'expressautoconnect' } }); </script>
\uD83D\uDCCB Related articles