Siga-nos nas Redes Sociais:

Obras Paralisadas




const searchInput = document.getElementById(‘searchInput’);
const buttons = document.querySelectorAll(‘#buttonContainer button’);

searchInput.addEventListener(‘keyup’, function() {
const filter = searchInput.value.toLowerCase();
buttons.forEach(button => {
if (button.textContent.toLowerCase().includes(filter)) {
button.style.display = ‘inline-block’;
} else {
button.style.display = ‘none’;
}
});
});

Scroll to top
Pular para o conteúdo