Current Videos 51-60 November 2023

51. Levee – Wilco

52. Big Mistakes – Trevor Rabin

53. Windows – Take That

54. Back To The Light – Teenage Fanclub

55. Bauhaus Staircase – Orchestral Manoeuvres in the Dark

56. Bogus Operandi – The Hives

57. Better Place – NSYNC

58. Drivin’ On – Foghat

59. Shut Your Mouth – Katrina Leskanich

60. Rough Around the Edges – Exile

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