CURRENT VIDEOS 71 -80

71. Manchild – Neneh Cherry

72. You Go Your Way, I’ll Go Mine  – Carole King

73. No More Worlds to Conquer – Robin Trower

74. I’ll Never Not Love You – Michael Buble’

75. So in Love – Jennifer Holliday

76. All I Know So Far – Pink

77. Wistful Dreams – Paul Williams

78. It Ain’t Over – The Black Keys

79. Grow As We Go – Sara Bareilles

80. Kicked Off the Plane – LIT

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