Support Manatee River Youth Sailing

Manatee River Youth Sailing (MRYS) empowers young people in Manatee County by fostering confidence, leadership, and environmental stewardship through accessible sailing programs. As it transitions to a community-supported public charity, MRYS aims to expand opportunities for all youth, ensuring that financial barriers don’t prevent them from experiencing the transformative power of sailing.

Donate

Sign Here
// /////////////////////////////////////////////////////////// const container = document.querySelector(".donation-type-only"); const slider = document.createElement("div"); slider.classList.add("slider"); container.appendChild(slider); const radios = container.querySelectorAll("input[type='radio']"); function moveSlider() { radios.forEach((r,i)=>{ if(r.checked) slider.style.left = (i*50)+"%"; }); } // Initial moveSlider(); // Update on change radios.forEach(r=>r.addEventListener("change", moveSlider));