blob: d875860d7671e6a8365295c16d681905cdb3497d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
setInterval(() => {
window.fetch("/app/radio/song.php").then((raw) => {
raw.text().then((text) => {
document.getElementById('radio-now').innerText = text;
})
})
window.fetch("/app/radio/next.php").then((raw) => {
raw.text().then((text) => {
document.getElementById('radio-next').innerText = text;
})
})
}, 2000)
|