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

Lime Cordiale take home Australian Album Of The Year at the 2020 J Awards

The awards were handed out over the course of today's programming

Winners of the 2020 J Awards were announced today, with Lime Cordiale winning the coveted title of Australian Album Of The Year.

Lime Cordiale won for their album ’14 Steps To A Better You’, beating out contenders like Tame Impala, Miiesha, Spacey Jane, DMA’S, Alice Ivy and more.

Advertisement

Tasman Keith earned the Australian Music Video Of The Year title with HIS clip for ‘Billy Bad Again’, which was directed by Joey Hunter.

Meanwhile, Archie Roach was crowned Double J’s Artist Of The Year. It has been a prolific year for the singer-songwriter, who recently announced a reissue of his debut album ‘Charcoal Lane’ three decades on from its release. He will also be inducted into the Hall of Fame at this year’s ARIA Awards.

Bundjalung rapper JK-47 took home the Unearthed Artist Of The Year. The artist released his debut full-length, ‘Made For This’, in September. JK-47 had previously won the 2020 triple j Unearthed National Indigenous Music Awards competition.

The Done Good Award went to live-streamed music festival Isol-Aid, with founder Emily Ulman picking up the phone to have a chat. According to host Bryce Mills, $80,000 has been raised from Isol-Aid to date.

Recommended

“We wanted to give musicians a platform who didn’t have a place to play,” Ulman told triple j.

“It was supposed to be a one-off…. and the first one went so well we decided to keep going.”

See the full list of 2020 J Award winners are:

Done Good Award – Isol-Aid
Unearthed Artist Of The Year – JK-47
Double J Artist Of The Year – Archie Roach
Australian Music Video Of The Year – Tasman Keith – ‘Billy Bad Again’ (dir. Joey Hunter)
Australian Album Of The Year – Lime Cordiale – ’14 Steps To A Better You’

You May Also Like

Advertisement

TRENDING

Advertisement

More Stories