Welcome to WordPress. This is your first post. Edit or delete it, then start writing!

Uma resposta

Deixe um comentário

O seu endereço de email não será publicado. Campos obrigatórios marcados com *

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"; }); } });