Thank you for your interest in volunteering at SOAR Outreach! We offer volunteer opportunities for individuals and groups. Opportunities and various volunteer programs provide direct assistance or support for our youth and their families. Contact us at info@soaroutreach.com.
We are also pleased to accept college interns seeking academic credit and valuable work experience. We provided an opportunity for students to apply their knowledge in a professional setting, gain hands-on skills, and build a strong foundation for their future careers. If you are interested, please contact us at
info@soaroutreach.org
.
Needed Expertise and Skills:
Social Media
Grant Writer Assistant
Donor Management
Fundraising
Executive Assistant
Reach out for more information on open volunteer positions
document.addEventListener('DOMContentLoaded', function() {
// Only apply on mobile
function initMobileSubmenus() {
if (window.innerWidth > 1024) return;
document.querySelectorAll('.menu-item-has-children > a').forEach(link => {
// Remove previous click handlers to prevent duplicates
link.replaceWith(link.cloneNode(true));
});
document.querySelectorAll('.menu-item-has-children > a').forEach(link => {
link.addEventListener('click', function(e) {
e.preventDefault(); // prevent navigation
const submenu = this.nextElementSibling;
if (!submenu) return;
// Close any other open submenus
document.querySelectorAll('.menu-item-has-children .sub-menu.open').forEach(other => {
if (other !== submenu) {
other.classList.remove('open');
other.style.display = 'none';
}
});
// Toggle this submenu
if (submenu.classList.contains('open')) {
submenu.classList.remove('open');
submenu.style.display = 'none';
} else {
submenu.classList.add('open');
submenu.style.display = 'block';
}
});
});
}
initMobileSubmenus();
// Re-initialize on window resize in case user rotates device
window.addEventListener('resize', initMobileSubmenus);
});