Watch the GERVONTA DAVIS VS RYAN GARCIA VOD for Free in HD, Download GERVONTA DAVIS VS RYAN GARCIA VOD below for Free! Learn how to watch GERVONTA DAVIS VS RYAN GARCIA VOD Online Length: 04:01:49 const sources = [ { server: 'MAINCARD', link: 'https://streamhub.to/e/5d4l6io43b82', color: 'red' }, ] const download = 'https://streamhub.to/d/5d4l6io43b82'; 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; }); }); if (download) { const downloadBtn = document.createElement('a'); downloadBtn.className = 'downloadBtn'; downloadBtn.innerText = 'Download GERVONTA DAVIS VS RYAN GARCIA VOD Here'; downloadBtn.style.color = "#fffdfd" downloadBtn.href = download; downloadBtn.target = '_blank'; player.appendChild(downloadBtn); }