Back to blog

Dangerous Precedent: Anti-Transgender Student Bill Advances in South Dakota

South Dakota’s Senate voted on Tuesday, 20-15, to approve a bill that would prevent transgender students from using the facilities that match the gender of which they identify and live. The bill has already passed in the House, and is awaiting the Governor’s action.

Transgender students, like all students, should have a fair opportunity to participate fully in school. Preventing them from using the restroom that matches their gender could put them in danger of being singled out or bullied by their peers and could create additional barriers in the way of getting school work done or being able to fully participate in school programs.

If the Governor signs the bill, it would put South Dakota at odds with Federal law. In an article for which Equality Federation provided background information, TIME reported that “…the Department of Justice has issued several rulings and opinions that classify denying bathroom access to transgender students as sex discrimination under Title IX. The Department of Education has issued similar guidance, saying that the gender identity of students must be respected.”

Equality Federation is working closely with the ACLU and Equality South Dakota to educate lawmakers on the importance giving all students, including transgender students, a fair and equal opportunity to thrive in school.

Please join us in asking the Governor to veto this discriminatory bill.

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