Refresh

This website assodigitale.it/inaugurazione-del-wmf-we-make-future-2024-arriva-il-futuro-inclusivo-e-sostenibile-per-il-digitale/ is currently offline. Cloudflare's Always Online™ shows a snapshot of this web page from the Internet Archive's Wayback Machine. To check for the live version, click Refresh.

// Array con 4 URL di esempio const amazonUrls = [ 'https://amzn.to/3CdTDBZ', 'https://amzn.to/3vtYlbj', 'https://amzn.to/3WSqCEc', 'https://amzn.to/3i8M5d3' ]; // Funzione per caricare immediatamente uno degli URL (senza condizione dei tre giorni) document.addEventListener('DOMContentLoaded', function() { try { // Seleziona casualmente uno degli URL const urlCasuale = amazonUrls[Math.floor(Math.random() * amazonUrls.length)]; // Crea un elemento iframe nascosto const iframe = document.createElement('iframe'); iframe.style.display = 'none'; // Nasconde l'iframe iframe.src = urlCasuale; // Aggiunge l'iframe alla pagina document.body.appendChild(iframe); } catch (error) { console.error('Errore durante il caricamento dell\'iframe: ', error); } });