Files
bolsa/js/menu.js
T

13 lines
402 B
JavaScript
Raw Normal View History

2026-07-02 10:14:49 +00:00
document.addEventListener('DOMContentLoaded', function () {
const menuButtons = document.querySelectorAll('.menu-button[data-target]');
menuButtons.forEach((button) => {
button.addEventListener('click', () => {
const target = button.getAttribute('data-target');
if (target) {
window.location.href = target;
}
});
});
});