- Add the class whatsapp-link to the button element.
- Set the button's URL to #
- Add the below javascript code to your website
document.addEventListener("DOMContentLoaded", function() {
const buttons = document.querySelectorAll('.whatsapp-link');
buttons.forEach(function(button) {
button.addEventListener('click', function(e) {
e.preventDefault(); // Prevent default behavior
const msg = encodeURIComponent("Hello, thanks for contacting us! -- URL: " + window.location.href);
const waUrl = 'https://wa.me/6281381534824?text=' + msg;
window.open(waUrl, '_blank'); // Open WhatsApp chat in new tab
});
});
}); <