Athletic Dept.
Parents yelling at referees to blame for Ohio’s ref shortage!
Article found at wcpo.com
Article found at journal-news.com
**If you would like to be a part of the solution to the shortage of high school officials, you can sign up to become a licensed official at HighSchoolOfficials.com. Otherwise, adult role models at high school athletic events here in Ohio are always welcome.
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 (_) {} })();