ExpertEase AI
English
English
  • 👋Welcome to ExpertEase AI
  • Overview
    • 💡What We Do
    • ✨Our Features
    • ❓Use Cases
    • 🦺Safety
    • 👷Maintainance
  • RESOURCE CENTER
    • 🏃‍♂️How ExpertEase AI Works?
      • Account Creation on ExpertEase AI (ExA)
      • Onboarding and Dashboard
      • Create New Bot
      • Data Centre
      • View Your Bots
      • Edit Your Bot
      • View Script
      • Live Preview
    • ❓Frequently Asked Questions
      • Onboarding FAQs
      • Bot Installation FAQs
      • Deleting Account and Data
    • 🤝ExpertEase AI & Client Interaction
      • Expectations from Clients
      • WhatsApp API Generation Prerequisites & Process
  • 👩‍💻ExpertEase AI Integration with Meta
    • ⚙️Setting Up Your Facebook Business Manager
    • Facebook Messenger
      • 📄Connect Facebook Pages to Business Profile
      • 🛂Connect Page Messenger with ExpertEase AI
      • 🔏Privacy Policy
      • 🔐Data Security
    • WhatsApp Messenger
      • Understanding WhatsApp Cloud
        • Pricing for WhatsApp Cloud
        • Update WhatsApp Bot Profile
        • Getting a green tick on WhatsApp
      • Prerequisites for WhatsApp Integration
      • Create Meta App
      • Register & Verify your WhatsApp Number
      • Update WhatsApp account Payment Method
      • Assign System User to WhatsApp Account
      • Subscribe WhatsApp Webhook with ExpertEase AI
    • WhatsApp Messenger (H)
      • ☁️Understanding WhastApp Cloud
        • 💲Pricing for WhatsApp Cloud
        • 🤖Update WhatsApp Bot Profile
        • ✅Getting a green tick on WhatsApp
      • 🔗Prerequisites for WhatsApp Integration
      • ✍️Create Meta App
      • 📱Register & Verify your WhatsApp Number
      • 💳Update WhatsApp account Payment Method
      • 💻Assign System User to WhatsApp Account
      • 👾Subscribe WhatsApp Webhook with ExpertEase AI
    • Facebook Messenger (h)
      • 🔗Connect Facebook Pages to Business Profile
      • 🔗Connect Page Messenger with ExpertEase AI
      • 🔏Privacy Policy
      • 🔐Data Security
  • 📬Inbox
  • 📊Analytics
  • 📝Choose a Plan
  • 📞User Support
Powered by GitBook
On this page
  1. RESOURCE CENTER
  2. Frequently Asked Questions

Bot Installation FAQs

This section contains the FAQs related to the installation of various type of bot

How to install website bot using java script.

Copy the script tag from the ExpertEase AI app

  1. Go to your website's HTML code

  2. Paste the script in the head or body tag of your HTML code

Please Note

  1. Ensure that you paste the script before the tag is closed, i.e., paste the script before </head> or </body>.

  2. Make sure ExpertEase should be the last script to execute, as some scripts may override the ExpertEase script.

What is the minimum browser version requirement for the ExpertEase website bot?

ExpertEase AI's Web Bot is a JS-based software. Hence your browser must support the Java Script. The minimum requirement for some renowned browsers are as follows:

  • Google Chrome: Version 51 or above

  • Edge: Version 14 or above

  • Safar: Version 10 or above

  • Firefox: Version 52 or above

How to resolve the latency issues on my website when I have a chatbot installed?

We understand the criticality of website speed and responsiveness. Adding a trigger delay only delays the chatbot from opening, but the script of the chatbot is loaded at the same time as the page, which can delay the overall page loading and create latency issues. This happens because of the vast processes that allow chatbots to run smoothly. However, this problem can be solved.

In the document ready function, create a timeout function of 3sec. In that timeout function, create a script element with the details of the script shared while installing the chatbot.

<script>
    const scriptEle = document.createElement("script");
    scriptEle.src = ('src', 'link to your ExpertEase AI Bot');
    document.onreadystatechange = function () {
      if (document.readyState == "complete") {
        setTimeout(() => {
          document.body.appendChild(scriptEle);
        }, 3000);
      }
    }
  </script>
PreviousOnboarding FAQsNextDeleting Account and Data
❓