Saltar al contenido

Buscar

document.addEventListener('DOMContentLoaded', function() { document.body.addEventListener('click', function(e) { const target = e.target.closest('a'); if (target && target.href) { e.preventDefault(); document.documentElement.style.cursor = 'wait'; setTimeout(function() { window.location.href = target.href; }, 2000); } }); });