88B STUDIOS
Home of WBRU & WBRU360 ...
Tune In 101.1FM
Listing to the longest running show on WBRU360 Gentle Touch: Love Theories w/ Chip Doug & J'Juan, Sundays at 8PM EST.
const player = document.getElementById('radio-player'); const button = document.getElementById('play-button'); const nowPlaying = document.getElementById('now-playing'); let isPlaying = false; button.addEventListener('click', () => { if (!isPlaying) { player.play(); button.textContent = '⏸️ Pause'; isPlaying = true; } else { player.pause(); button.textContent = '▶️ Play'; isPlaying = false; } }); const metadataUrl = 'https://public.radio.co/stations/s4d09e922b/status'; function updateNowPlaying() { fetch(metadataUrl) .then(response => response.json()) .then(data => { if (data.current_track && data.current_track.title) { nowPlaying.textContent = `🎶 Now Playing: ${data.current_track.title}`; } else { nowPlaying.textContent = '🎶 Now Playing: Not available'; } }) .catch(() => { nowPlaying.textContent = '🎶 Now Playing: Unable to load'; }); } updateNowPlaying(); setInterval(updateNowPlaying, 15000);