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
China Masters 2025: Season 9
06:36:47
S8ul Esports
Call of Duty
China Masters 2025: Season 9
08:36:47
All Gamers
Call of Duty
Call of Duty League 2025: Stage 3 Major Qualifiers
17:06:47
Toronto Ultra
Miami Heretics
Call of Duty
Call of Duty League 2025: Stage 3 Major Qualifiers
18:36:47
Boston Breach
Cloud9 New York
Call of Duty
Call of Duty League 2025: Stage 3 Major Qualifiers
20:06:47
Los Angeles Guerrillas M8
Los Angeles Thieves
`; 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"; } } }); }