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:
League of Legends
LDL 2024 Split 2
05:25:01
Weibo Gaming Youth Team
JiJieHao
League of Legends
LDL 2024 Split 2
07:25:01
Edward Gaming Youth Team
Invictus Gaming Young
League of Legends
LDL 2024 Split 2
09:25:01
LNG Esports Academy
FunPlus Phoenix Blaze
League of Legends
LRS 2024 Season
20:25:01
Spectacled Bears
WAP eSports
League of Legends
LRS 2024 Season
21:25:01
Malvinas Gaming
Undead Gaming
League of Legends
LRS 2024 Season
22:25:01
Furious Gaming
Meta Gaming
`; 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"; } } }); }