Current Videos 51-60 March 2023

51. New Girl – Third Eye Blind

52. Oh My Word – A-ha

53. North of England – The Cathodes

54. Only Love Can Hurt Like This (Remix) – Paloma Faith feat. Teddy Swims

55. Oh Me, Oh My – Lonnie Hall w/Michael Stipe

56. We Met On a Train – Tbelly

TBD

57. Something’s Got To Change – Rodney Crowell

58. Never Go – Pete Yorn

59. Edging – Blink 182

60. I Shall Be Released – Nitty Gritty Dirt Band

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