VLive

El anuncio lo hicieron los mismos integrantes en el evento en vivo 'The Ringtone: SHINee Is Back' llevado a cabo el 31 de enero.
document.addEventListener("DOMContentLoaded", function () { const buttons = document.querySelectorAll('.play-audio'); const audioURL = document.querySelector('.audio-data')?.textContent.trim(); if (!audioURL) { console.warn("No se encontró el audio"); return; } buttons.forEach(button => { button.style.cursor = "pointer"; button.addEventListener("click", function () { const audio = new Audio(audioURL); audio.play(); }); }); });