Back to blog

President Obama Supports Equality Act

Statement from Rebecca Isaacs, Executive Director, Equality Federation

We applaud President Obama for his support of the Equality Act, an important piece of legislation that would help ensure all Americans, including LGBTQ people and their families, are fully and clearly protected from discrimination. The announcement builds upon seven years of this administration’s support. They have  extended hospital visitation to LGBTQ families, ended discrimination among federal employees and contractors, supported marriage equality, opposed conversion therapy, and so much more.

Sadly, this legislation is desperately needed. There are 31 states remaining that do not have statewide nondiscrimination laws covering LGBTQ people. We are proud to be working with our state-based partner organizations, from Equality Pennsylvania to Equality Arizona, to build support at the state level for these  protections all across the country. No hard working American should be denied housing or basic services simply for being themselves. Discrimination harms families and holds our country back. The day will come when we will reflect on this time and ask ourselves why it took so long to achieve fairness, but we will be very proud of each step we make toward liberty and justice for all.

/* ============================================= 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 */ }); });