Ir para o conteúdo
plugins premium WordPress
document.addEventListener("DOMContentLoaded", function () {
const botao = document.getElementById("botao-whatsapp-random");
if (botao) {
const links = [
"https://wa.me/message/H4F23MATQZVCI1",
"https://wa.me/message/EUTQR7M22J3FN1"
];
const linkAleatorio = links[Math.floor(Math.random() * links.length)];
botao.setAttribute("href", linkAleatorio);
}
});