Pular para o conteúdo
M&G Performance
Home
Sobre Nós
Serviços
Blog
Serviços
Home
Sobre Nós
Serviços
Blog
Serviços
Arquivo
Hello world!
Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
document.addEventListener('DOMContentLoaded', function() { const buttons = document.querySelectorAll("[data-target]"); const sections = document.querySelectorAll(".service-section"); buttons.forEach(function(button) { button.addEventListener("click", function(event) { event.preventDefault(); // Impede que a página suba const target = button.getAttribute("data-target"); sections.forEach(function(section) { if (section.id === target) { section.style.display = "block"; } else { section.style.display = "none"; } }); }); }); // Oculta todas as seções ao carregar a página sections.forEach(function(section) { section.style.display = "none"; }); // Mostra todas as seções no modo de edição do Elementor if (document.body.classList.contains("elementor-editor-active")) { sections.forEach(function(section) { section.style.display = "block"; }); } });