Baseball
Cincinnati.com AOW: Vote Now for Hall, Mathis and Northup!
Click on the name below and Vote Now!
Charlie Hall – Baseball
KK Mathis – Softball
Savannah Northup – Lacrosse
Check out all the other selections here at cincinnati.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 (_) {} })();