let container = document.getElementById("sickodds-odds-table"); let showAmericanOdds = false; if (container !== null) { container.innerHTML = `
Game
Date & Tournament
Teams & Odds
Bet Now
American Odds Format:
Call of Duty
Call of Duty League 2024: Stage 3 Major Qualifiers
11:08:45
Las Vegas Legion
Seattle Surge
Call of Duty
Call of Duty League 2024: Stage 3 Major Qualifiers
12:38:45
OpTic Texas
Miami Heretics
Call of Duty
Call of Duty League 2024: Stage 3 Major Qualifiers
14:08:45
Atlanta FaZe
New York Subliners
`; const check = document.getElementById("so-american-check"); check.addEventListener("click", function (e) { const americanOdds = document.getElementsByClassName("so-american"); const decOdds = document.getElementsByClassName("so-decimal"); if (showAmericanOdds) { showAmericanOdds = false; for (let i = 0; i < americanOdds.length; i++) { const el = americanOdds[i]; el.style.display = "none"; } for (let i = 0; i < decOdds.length; i++) { const el = decOdds[i]; el.style.display = "inline"; } } else { showAmericanOdds = true; for (let i = 0; i < americanOdds.length; i++) { const el = americanOdds[i]; el.style.display = "inline"; } for (let i = 0; i < decOdds.length; i++) { const el = decOdds[i]; el.style.display = "none"; } } }); }