logo3
Accueil Ivankovic

Ivankovic

1 Articles
Ivankovic
Equipe NationaleSélection A

EN : une piste se dessine pour Branko Ivankovic

Ces dernières heures, un certain Branko Ivankovic ressort souvent quand on parle de successeur pour Djamel Belmadi. En effet, le technicien croate a...

// Add "On Air" badge to podcast menu const podcastMenuItem = document.querySelector(".podcast_menu"); if (podcastMenuItem) { const now = new Date(); const day = now.getDay(); // 0 = Sunday, 1 = Monday, ..., 6 = Saturday const hour = now.getHours(); // Check if it's Monday and between 8 PM and 9 PM if (day === 1 && (hour === 22 || hour === 23)) { const onAirBadge = document.createElement("span"); onAirBadge.classList.add("on-air"); onAirBadge.textContent = "On Air"; podcastMenuItem.appendChild(onAirBadge); } } // Add a class to Dailymotion iframes const iframes = document.querySelectorAll('iframe'); iframes.forEach(function (iframe) { if (iframe.src.includes('dailymotion')) { iframe.classList.add('dailymotion-iframe'); } }); //----------------------- Widget Tabber Fil Info const content = document.querySelector('.fil-info-content'); const upButton = document.querySelector('.fil-info-up'); const downButton = document.querySelector('.fil-info-down'); if (content && upButton && downButton) { upButton.addEventListener('click', function () { content.scrollBy({ top: -100, behavior: 'smooth' }); }); downButton.addEventListener('click', function () { content.scrollBy({ top: 100, behavior: 'smooth' }); }); } });