Back to blog

Support our Members this Give OUT Day

Give OUT Day is a month-long fundraising campaign culminating on June 30, the only national day of giving for the LGBTQ community. Last year Give OUT Day raised over $1.9 million for LGBTQ nonprofits in all 50 states, D.C., and Puerto Rico.  Give OUT Day is hosted by Horizons Foundation, the world's first LGBTQ community foundation.

Give OUT Day partner organizations compete for tens of thousands in prizes, primarily Leaderboards, awarded to the organizations with the highest number of unique donors in their category.

Every Give OUT Day partner organization has a donation page on giveoutday.org, and partners recruit fundraisers to create their own fundraising pages for their organizations. Donors visit these pages to make donations. Give OUT Day is June 30, 2022, but donations throughout all of Pride Month count toward the prizes.

This Give OUT Day, please consider matching that gift with a donation to your closest participating state partner, and a BIPOC-focused organization:

/* ============================================= Timed Popup — Shows after a delay on every page Closes on: X button, overlay click, or Escape key Once per session (won't show again until new session) ============================================= */ document.addEventListener("DOMContentLoaded", function () { /* Target the popup elements by their Webflow classes */ const popup = document.querySelector(".modal-popup_wrapper"); const closeBtn = document.querySelector(".modal-popup_close"); const overlay = document.querySelector(".modal-popup_overlay"); /* Check if popup has already been seen this session */ if (sessionStorage.getItem("popupSeen")) return; /* Show the popup after a delay Change 4000 to adjust timing (1000 = 1 second) */ setTimeout(function () { popup.style.display = "flex"; popup.removeAttribute("aria-hidden"); closeBtn.focus(); /* Moves focus to close button for accessibility */ }, 4000); /* Close the popup and record the session */ function closePopup() { popup.style.display = "none"; popup.setAttribute("aria-hidden", "true"); sessionStorage.setItem("popupSeen", "true"); /* Prevents popup from showing again this session */ } /* Close triggers */ closeBtn.addEventListener("click", closePopup); /* X button */ overlay.addEventListener("click", closePopup); /* Clicking the dim background */ document.addEventListener("keydown", function (e) { if (e.key === "Escape") closePopup(); /* Escape key */ }); });