Boys Golf
Mark Your Calendars: Boys Golf Meeting For Players And Parents
There will be a Lakota West Boys Golf information meeting for students currently in grades 8 through 11 who will attend Lakota West next fall. Athletes interested in golf in the fall should attend this meeting and have a parent attend with them. The meeting will be on Tuesday, May 14th in the Innovation Hub (West Main) at 6:30 pm. Please contact Coach Conway at chris.conway@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 (_) {} })();