// Assuming the UserPilot button has an ID of "userPilotButton"
document.getElementById('userPilotButton').addEventListener('click', function() {
// Check if the iframe already exists to prevent duplicates
if (!document.getElementById('hubspotChatIframe')) {
// Create the iframe
const iframe = document.createElement('iframe');
iframe.id = 'hubspotChatIframe';
iframe.src = 'https://your-hubspot-chat-url'; // Replace with the actual iframe source URL
iframe.style.width = '400px'; // Set the desired width
iframe.style.height = '600px'; // Set the desired height
iframe.style.border = '1px solid #ccc'; // Optional styling
iframe.style.position = 'fixed'; // Optional: fixed position for better layout
iframe.style.bottom = '10px'; // Optional: adjust position
iframe.style.right = '10px'; // Optional: adjust position
iframe.style.zIndex = '9999'; // Ensure it stays on top of other elements
// Append the iframe to the body
document.body.appendChild(iframe);
}
});