Tidio

// Wait until Tidio chat is fully loaded document.addEventListener("tidioChatReady", function() { // Create the button const quoteBtn = document.createElement("button"); quoteBtn.innerText = "Get a Quote"; quoteBtn.style.position = "fixed"; quoteBtn.style.bottom = "80px"; // Adjust distance from bottom quoteBtn.style.right = "20px"; // Adjust distance from right quoteBtn.style.padding = "12px 20px"; quoteBtn.style.backgroundColor = "#FF5722"; // Your brand color quoteBtn.style.color = "#fff"; quoteBtn.style.border = "none"; quoteBtn.style.borderRadius = "5px"; quoteBtn.style.cursor = "pointer"; quoteBtn.style.zIndex = "9999"; quoteBtn.style.boxShadow = "0px 4px 6px rgba(0,0,0,0.2)"; quoteBtn.style.fontSize = "16px"; // When clicked, open your quote page or Tidio form quoteBtn.onclick = function() { window.open("https://yourwebsite.com/get-a-quote", "_blank"); // OR if you want to open Tidio contact form instead: // tidioChatApi.open(); }; // Add the button to the page document.body.appendChild(quoteBtn); });
Scroll to Top