Back to blog

Breaking: Victory - Washington Senate Kills Anti-Transgender Bill!

In a close 25-24 vote, the Washington Senate today shut down an anti-transgender bill, SB 6443,  that would have undone the state’s regulations that ensure transgender people are able to use the facilities that match their gender identity.

Thanks to the 22 Senate Democrats and Republican Senators @stevelitzow, @SenatorAndyHill, and @senatorfain for voting against harmful SB6443

— Equal Rights WA (@equalrightswa) February 11, 2016

Equality Federation assisted members of the Washington SAFE Alliance with the latest messaging and other strategy support throughout the process. We will continue supporting transgender Washingtonians as we monitor 8 more bills, good and bad. Check out our Legislative Action Center to see the bills we are tracking.

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