`; // 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 = ''; function decodeHtmlEntities(str) { const txt = document.createElement('textarea'); txt.innerHTML = str; return txt.value; } // 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 = decodeHtmlEntities(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); }); });

TV News

Netflix renews ‘One Piece’ for third season and share first-look images of second

"Brace yourselves, ONE PIECE: INTO THE GRAND LINE sets sail in 2026!"

‘The White Lotus’ star Sam Nivola rejects ‘nepo baby’ label: “I did it by myself”

The actor is the son of stars Alessandro Nivola and Emily Mortimer

Disney settles dispute with Gina Carano over ‘Mandalorian’ firing

The studio terminated the actor's employment in 2021 over political tweets

Rosie O’Donnell worried Trump will cancel ‘The View’ next

"Apparently, the truth is dangerous now"

‘Coming Home’: New Ozzy Osbourne doc to give “intimate glimpse” at icon’s “last chapter”

The film spans three years, and follows him and Sharon as they tried to move back to the UK

Donald Trump says Jimmy Kimmel and Jimmy Fallon are “going to be gone” after Colbert cancellation

The current late night hosts are vocal critics of the US President

Nintendo Of America was worried Pokémon was “too cute”, almost gave Pikachu breasts

“I won't show those illustrations to anyone as long as I live”

‘Stranger Things’ creators planning a ‘Twin Peaks’-inspired spin-off

Star Finn Wolfhard guessed the formula while filming

Every song on the ‘Platonic’ season two soundtrack

The Seth Rogen and Rose Byrne comedy is back on Apple TV+
Advertisement