Watch GERVONTA DAVIS VS RYAN GARCIA Boxing Match Live for Free in HD on FreeSide+ Event Time: 8 PM ET const sources = [ { server: 'Streamhub', link: 'https://vipstreams.in/embed/boxing-2.html', 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; }); });