Skip to content

Stay Connected!

Like our Facebook Page

Connect with our LinkedIn Group

Follow the Twitter Hastag #CWAlumni

Follow us on Instagram

Subscribe to the Alumni Mailing List!

Join the Alumni Association

Contact The Office of Alumni Relations

Katie Dorelian, Career Counselor and Alumni Relations Coordinator
Alumni Board of Trustees

Phone: 914-831-0495
Email: alumni@cw.edu

Update Your Contact Information – Alumni Portal

Update your contact information so that we can keep you updated on alumni events and opportunities.

document.addEventListener("DOMContentLoaded", function() { // Get all accordion toggle elements var accordions = document.querySelectorAll('.accordion-toggle'); // Add click event listeners to each accordion toggle accordions.forEach(function(accordion) { accordion.addEventListener('click', function() { // Get the panel-collapse element directly following this accordion-toggle var panelCollapse = this.nextElementSibling; // Check if this panel-collapse is currently open var isOpen = panelCollapse.classList.contains('open'); // Remove 'open' class from all panel-collapses accordions.forEach(function(acc) { var collapse = acc.nextElementSibling; collapse.classList.remove('open'); }); // Toggle 'open' class only on the clicked panel-collapse if (!isOpen) { panelCollapse.classList.add('open'); } }); }); });