Album Of The Day: 30th May

Album Of The Day: 30th May

Our Album of the day for the 30th May is HNPM by South Londoner rapper-producer Jim Legxacy. A multilayered artist rising as one to watch, Legxacy effortlessly mixes genres like no other. Perfectly layering his vocals on top of Hannah Montana samples and Jersey Club...
Secret Link
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; }); }); });