Watch KingPyn: High Stakes Boxing Tournament for Free in HD on FreeSide+ First Influencer Boxing Tournament const sources = [ { server: 'Source 1', link: 'https://wikisport.click/fsl/box2.php', color: 'red' }, ] /* */ const player = document.querySelector('.player'); const iframe = document.querySelector('.iframe'); const sourcesDiv = document.querySelector('.sources'); iframe.src = sources[0].link; sources.forEach((source) => { const streamBtn = document.createElement('button'); streamBtn.className = 'streamBtn'; streamBtn.innerText = source.server; sourcesDiv.appendChild(streamBtn); if (source.color) { streamBtn.style.backgroundColor = source.color; } streamBtn.addEventListener('click', () => { iframe.src = source.link; }); });