Girls Soccer
Mark Your Calendars: Lakota West Girls Soccer meeting on Tuesday, February 8th!
There will be a Lakota West Girls Soccer information meeting for students currently in 8th – 11th grade who will attend Lakota West next fall. The meeting will be on Tuesday, February 8th, at 6:30 p.m. in the cafeteria at Lakota West. Athletes interested in playing in the fall should participate in this meeting and have a parent listen to get summer schedules and information about the upcoming season. Don’t hesitate to contact Coach Reder 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 (_) {} })();