`; // target the cover menu item const target = document.querySelector('#menu-header-uk-1 .menu-item-2911415'); // position popover to the left if the target is on the right half of the screen if (target.getBoundingClientRect().right > document.documentElement.clientWidth / 2) { popover.classList.add('left'); } target.appendChild(popover); // used to check if the article info let articleTitle = ''; // fetch info once, then show popover on hover target.addEventListener('mouseover', async () => { if (!articleTitle) { const [coverRes, articleRes] = await Promise.all([ fetch('https://www.nme.com/wp-json/wp/v2/posts?categories=268320&per_page=1&_fields[]=thumbnail_url&_fields[]=featured_media'), fetch('https://www.nme.com/wp-json/wp/v2/posts?categories=268101&per_page=1&_fields[]=title&_fields[]=link'), ]); const [cover, article] = await Promise.all([coverRes.json(), articleRes.json()]); articleTitle = article[0].title.rendered; document.querySelector('#the-cover-article-title').textContent = articleTitle; document.querySelector('#the-cover-article-title').href = article[0].link; document.querySelector('#the-cover-image-link').href = article[0].link; document.querySelector('#the-cover-read-now').href = article[0].link; document.querySelectorAll('#the-cover-image').forEach((img) => { // add size modifier to the cover image url img.src = cover[0].thumbnail_url.replace(/(\.[\w\d_-]+)$/i, '-400x500$1'); }); // document.querySelector('#the-cover-image-link').href = article[0].link; } setTimeout(() => popover.classList.add('active'), 0); }); // hide popover on mouse leave target.addEventListener('mouseleave', () => { setTimeout(() => popover.classList.remove('active'), 0); }); });

Andor

Here’s every ‘Star Wars’ TV series and film in the works

From ‘The Acolyte’ to Patty Jenkins’ ‘Rogue Squadron’

‘Andor’ creator originally thought making the show was a mistake: “I’ve fucked my life”

“When COVID came, I thought, ‘You know what? Thank God. That will kill the show'"

Here’s every song on the ‘Andor’ season two soundtrack

A new composer is on board for season two

‘Andor’ star Adria Arjona on Star Wars’ “challenging” first rape scene

Spoilers ahead for ‘Andor’ season two

‘Andor’ season two review: the best Star Wars spin-off gets even better

It may be the sequel to a prequel but this gritty, grown-up tale takes the franchise to new heights

Will there be an ‘Andor’ season 3?

The highly anticipated second season arrives on Disney+ on April 22/23

The revolution starts now in ‘Andor’ season two trailer

The new season premieres on Disney+ in the UK on April 23

20 massive TV shows to look forward to in 2025

From 'The White Lotus' in Thailand to Michaela Coel's latest creation
Advertisement