Current Videos 91-100 July 2023

91. Glu – Usher

92. Lighthouse – Duff McKagan

93. Always Remember – Brenda K. Starr

94. Space Shoes of Love – Tom Tom Club

95. Mood (feat. Kes) – Shaggy

96. Running Scared – Billy Brown

97. Poppa Joe – Sweet

98. Traffic – Simple Minds

99. We Don’t Need Another Hero – Ghost

100. NO BAD DAYS (feat. Collett) – Macklemore

101. Believe In Me – The Cathodes

[

102. 100-99 (feat. GoldLink) – Albert Hammond Jr.

Copyright © 2025 Masters Radio
document.addEventListener('DOMContentLoaded', function () { var shuffleBtn = document.getElementById('shuffle-playlist'); if (!shuffleBtn) return; shuffleBtn.addEventListener('click', function () { // Find the playlist container var playlist = document.querySelector('.wp-playlist-tracks'); if (!playlist) { alert('Playlist not found. Please check the selector.'); return; } // Get all tracks as an array var tracks = Array.from(playlist.querySelectorAll('.wp-playlist-item')); // Fisher-Yates shuffle for (let i = tracks.length - 1; i > 0; i--) { const j = Math.floor(Math.random() * (i + 1)); [tracks[i], tracks[j]] = [tracks[j], tracks[i]]; } // Remove all tracks and re-append in shuffled order tracks.forEach(track => playlist.appendChild(track)); // Optionally, play the first song after shuffling: // Try simulating a click on the first song's link setTimeout(function () { var firstTrack = playlist.querySelector('.wp-playlist-item a.wp-playlist-caption'); if (firstTrack) firstTrack.click(); }, 300); }); });