Przejdź do treści
POLECAMY
// PREFETCH NASTĘPNEJ STRONY (Desktop Only)
if (window.innerWidth > 1024) {
document.addEventListener('mouseover', function(e) {
const link = e.target.closest('.btn-global');
if (link && link.href && !link.dataset.preloaded) {
const prefetch = document.createElement('link');
prefetch.rel = 'prefetch';
prefetch.href = link.href;
document.head.appendChild(prefetch);
link.dataset.preloaded = 'true';
}
}, {passive: true});
}