Skip to content

Give Back

CWCF Alumni Scholarship

The Alumni Scholarship was created by one of the college’s Alum who wanted a way to pay it forward and help current students of The College of Westchester realize their dreams of obtaining a college education. This scholarship is awarded every year to a current student with at least 15 credits and a minimum 3.0 cumulative GPA. In addition to strong academic accomplishments, scholarship recipients are selected based on involvement in leadership and community service activities, and demonstrated financial need.

To make a donation towards the Alumni Scholarship, click here.

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'); } }); }); });