window.avadablock_prefetchURIs = window.avadablock_prefetchURIs || []; document.querySelectorAll( 'a' ).forEach( function( el ) { el.addEventListener( 'mouseenter', function() { if ( ! window.avadablock_prefetchURIs.includes( el.href ) ) { setTimeout( function() { if ( el.matches( ':hover' ) ) { const link = document.createElement( 'link' ); link.rel = 'prefetch'; link.as = 'document'; link.href = el.href; document.head.appendChild( link ); } window.avadablock_prefetchURIs.push( el.href ); }, 200 ); } } ) } );