Current Videos 91-100 April 2023

91. Let Me Love You – Love and Death

92. Busted – Steve Vai

93. Fallout – Yo La Tengo

94. Pride – U2

95. What I’m Here 4 – P.M. Dawn

96. Always Looking for You – Jason Mraz

97. Move Under – Mudhoney

98. Breakout – Hook

99. Hypnogogue – The Church

100. Spillways – Ghost

101. The Other Side – Altered Images

102. Take The World Apart – Cat Stevens

103. Diamonds – L.A. Guns

104. O Sun O Moon – Bruce Cockburn

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