VOTING IS COMPLETE
Winners will be announced September 29
In partnership with:
// Target date: July 18, 2025, 5:30 PM PDT (UTC-07:00)
function isBeforeTargetDate() {
// UPDATE DATE BELOW TO DESIRED PUBLISH DATE ********************************************************
const targetDate = new Date('2025-07-18T17:30:00-07:00');
const currentDate = new Date();
return currentDate < targetDate; } function showOrHideElements() { const elementToShow = document.getElementById('elementToShow'); const elementToHideShow = document.getElementById('elementToHideShow'); if (isBeforeTargetDate()) { elementToShow.style.display = 'block'; elementToHideShow.style.display = 'none'; } else { elementToShow.style.display = 'none'; elementToHideShow.style.display = 'block'; } } window.onload = showOrHideElements;