Cross Country
Mark Your Calendars: Lakota West XC information meeting!
There will be a Lakota West XC information meeting for students currently in grades 8 through 11 who will attend Lakota West next fall and are interested in playing running Cross Country. Athletes interested in running in the fall should attend this meeting and have a parent attend to get summer schedules and information about the upcoming season. The meeting will be on Tuesday, May 17th in the Lakota West Cafeteria at 6:00 PM. Please contact Coach Hart at sean.hart@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 (_) {} })();