`; // 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); }); });

Radiohead reveal how successful ‘In Rainbows’ download really was

Facts for pay-what-you-want release finally made public

The statistics behind the pay-what-you-like release of Radiohead‘s ‘In Rainbows’ album, released on October 10 last year online, have been revealed today (October 15).

According to reports most fans chose to pay nothing to download the album. However, it still generated more money before it was physically released (on December 31) than the total money generated by sales of the band’s previous album, 2003’s ‘Hail To The Thief’.

According to Music Ally, Jane Dyball, head of business affairs at Warner Chappell (the publishing company that oversaw the release of ‘In Rainbows’), refused to reveal the average price people were downloading the album for.

However, Dyball, set to speak about the release at the Iceland Airwaves conference later, explained that Warner Chappell and Radiohead‘s management were monitoring the average price daily, and was prepared to cancel the download facility if the average price became too low.

Advertisement

The download facility was taken down after three months, and the album went to Number One in the UK and USA after being physically released.

Statistics revealed that most fans downloaded the album through file-sharing service BitTorrent, but that this had been anticipated before the release.

The band sold 100,000 copies of the ‘In Rainbows’ box set, which contained extra songs not available on the standard download or CD release.

Recommended

Warner Chappell concluded that the new release style was a financial success, but did not reveal whether Radiohead plan to release an album in a similar way in the future.

To receive the latest news updates every week – plus free MP3s, videos and more – sign up to the NME Newsletter.

You May Also Like

Advertisement

TRENDING

Advertisement

More Stories