document.addEventListener("DOMContentLoaded", () => { const lastPlayedBlock = document.getElementById('last-played'); fetch("http://cat.fs.tlpteam.ru:5011/?user=catmpeg") .then(response => response.json()) .then(data => { if (data && data.name) { const lastPlayed = document.getElementById("song"); lastPlayed.innerHTML = ` ${data.name} - ${data.artist}`; lastPlayedBlock.style.display = "block"; } }) .catch(err => console.error(err)); });