Skip to content

Giving the Gift of Education on #GivingTuesday

Giving Tuesday is a national movement to remind people the holiday season is about giving back and helping those in need. It is on the Tuesday following Thanksgiving on December 2nd, after the shopping days of Black Friday, Small Business Saturday, and Cyber Monday.

If you are looking for a good cause to join, consider The College of Westchester Charitable Foundation (CWCF). This foundation exists to raise scholarships for students. If not for the CWCF, worthy students, who are in need of a way to supplement their tuition costs, might not realize their educational goals. On #GivingTuesday donate to CWCF.

To donate directly to the CWCF 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'); } }); }); });