Track
Mark You Calendars: Track Information Meeting Thursday, November 8th!
There will be an informational meeting next Thursday, November 8th from 3-3:45 in the Lakota West Cafeteria for all those interested in track and field that aren’t currently involved in a Winter sport. Please contact Coach Eisenhard for any other questions at brenton.eisenhard@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 (_) {} })();