Welcome to Getyagrooveon Radio

Embed Code: Hosted By

Embed Code:


Preview: Hosted By

Embed Code: Station Select

Embed Code:


Preview: Station Select

Facebook Twitter Instagram
function copyToClipboard(id) { const embedCodeTextArea = document.getElementById(id); embedCodeTextArea.select(); embedCodeTextArea.setSelectionRange(0, 99999); // For mobile devices // Copy the text inside the text field document.execCommand('copy'); alert("Embed code copied to clipboard!"); }
function toggleSidebar() { const sidebar = document.getElementById("sidebar"); if (sidebar.style.width === "250px") { sidebar.style.width = "0"; } else { sidebar.style.width = "250px"; } }