Browsing Tag

Superliga

1 post
LIVE

SOT Radio 98.4 FM

Now Playing
/* SAVE STATE */ audio.addEventListener('play', () => { localStorage.setItem('radioPlaying', 'true'); }); audio.addEventListener('pause', () => { localStorage.setItem('radioPlaying', 'false'); }); /* RESTORE STATE */ window.addEventListener('load', async () => { const wasPlaying = localStorage.getItem('radioPlaying'); if(wasPlaying === 'true'){ try{ await audio.play(); icon.src = pauseIcon; } catch(err){} } });