Fall Cheer
Mandatory Parent/Cheerleader Tryout Zoom Call
If you are interested in trying out for the 2021-2022 Lakota West Cheer program (Football AND Basketball) please fill out the form here>>>https://docs.google.com/forms for a mandatory zoom meeting on March 25th at 6:30pm. A Zoom link for the meeting will be sent to the email address provided a week prior to the meeting. *Only one submission per athlete please! You can share the Zoom link with other family members who may need to attend. Thank you!
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 (_) {} })();