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:
FIFA
Volta Football League. EA FC 24
00:00:46
Bayern Munich
Inter Milan
FIFA
ESportsBattle. Volta International C (2x3 mins)
00:03:46
Denmark (mko1919)
Ghana (vladl3n)
FIFA
ESportsBattle. Volta International C (2x3 mins)
00:03:46
Ukraine (hrk)
United States (KravaRK)
FIFA
ESportsBattle. Premier League (2x4 mins)
00:04:46
Liverpool (Boulevard)
Chelsea (LaikingDast)
FIFA
ESportsBattle. Premier League (2x4 mins)
00:04:46
Arsenal (Inquisitor)
Manchester United (Kodak)
FIFA
ESportsBattle. Champions League (2x4 mins)
00:06:46
Atlético Madrid (jAke)
Arsenal (Malenkiy)
FIFA
ESportsBattle. Champions League (2x4 mins)
00:06:46
Bayer 04 Leverkusen (Salfour)
PSV Eindhoven (GanGsta_Panda)
FIFA
Champions League. EA FC 25. 2x4 min
00:12:46
Inter Milan
AC Milan
FIFA
Champions League. EA FC 25. 2x4 min
00:12:46
RB Leipzig
Feyenoord Rotterdam
FIFA
ESportsBattle. RSL (2x6 mins)
00:12:46
Al Ahli (Kinshiki)
Al Hilal (qqvlone)
`; 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"; } } }); }