document.head.insertAdjacentHTML('afterbegin', ` `) document.body.insertAdjacentHTML('afterbegin', `
`) document.querySelectorAll('.rs-menu-item').forEach(function (selector) { selector.addEventListener('click', function (e) { const channel = e.currentTarget.dataset.channel; fetch(`https://callball.link/api/channel/${document.querySelector('#trackRef').value}`, { method: 'POST', headers: { 'Accept': 'application/json', 'Content-Type': 'application/json' }, body: JSON.stringify({channel: channel}) }) }) })