(function () { const whatsappNumber = '1234567890'; // Predefined WhatsApp number const message = 'Hello! How can I help you?'; // Create a link element const button = document.createElement('a'); button.href = `https://wa.me/${whatsappNumber}?text=${encodeURIComponent(message)}`; button.target = '_blank'; // Style the button button.style.position = 'fixed'; button.style.bottom = '20px'; button.style.right = '20px'; button.style.background = '#25D366'; button.style.color = 'white'; button.style.padding = '10px 20px'; button.style.borderRadius = '50px'; button.style.textDecoration = 'none'; // Add an icon image to the button (base64 encoded) const icon = document.createElement('img'); icon.src = 'https://drive.google.com/uc?export=view&id=1O3LJkzMqohqvv8B6QZTaAYyzrspuP3Hl'; icon.style.width = '20px'; icon.style.height = '20px'; icon.style.marginRight = '10px'; icon.style.verticalAlign = 'middle'; button.appendChild(icon); // Add button text const buttonText = document.createTextNode('Chat with us'); button.appendChild(buttonText); // Append the button to the body document.body.appendChild(button); })(); Sample image
top of page
bottom of page