Current Videos 21-30 December 2023

21. Bubbles Up – Jimmy Buffett

22. This Is Now – Ann Wilson

23. One More Time – Blink 182

24. Your Side of Town – The Killers

25. Flowers of Freedom – The Automatics

26. Shiny Happy People – Micky Dolenz

27. Jazz Hands – Bob James Ceelo Green

28. Don’t Look Down – Arc of Life

29. Never Gonna Stop – Rick Astley

30. I Hate Love – Kelly Clarkson/ Steve Martin

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