Album of the day: 26 May

Album of the day: 26 May

Our album of the day is Hearts’ EP ‘EP 2, released in 2024. A British and Swedish four-piece, Hearts have put their own spin on indie-rock. The band even features ex-Catfish and the Bottlemen drummer, Rob Hall. Hearts have a mature, refined and powerful...
document.addEventListener('DOMContentLoaded', function() { // Select all audio modules with the custom class var audioModules = document.querySelectorAll('.custom-audio-module'); audioModules.forEach(function(module, index) { // Create a container for the counter var counterContainer = document.createElement('div'); counterContainer.classList.add('counter-container'); counterContainer.innerHTML = '0'; // Append the counter container to the module module.appendChild(counterContainer); // Get the audio element var audio = module.querySelector('audio'); // Initialize the counter var counter = 0; // Add play event listener to the audio element audio.addEventListener('play', function() { counter++; document.getElementById('audio-counter-' + index).textContent = counter; }); }); });