Currently Videos 91- 100 February 2024

91. What Do I Got To Lose – Sebastian Bach

92. No Reason (feat. Edwin McCain) – Jim Sonefeld feat. Edwin McCain

93. Circle of Life – Crack The Sky

94. Lifeline – Alicia Keys

95. Dig A Hole – Blackberry Smoke

96. Against The Winds – Revolution Saints

97. Dare You To Doubt Me – The Script

98. Rain of Hell – Ann Wilson

99. Leave A Light ON – Papa Roach

100. Youre Right For Me – Joel Hoekstra

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