Skip to content

CW Hosts Spring Career Fair

CW students looking for a job and 22 employers connected at our Spring Career Fair. Students filled the Student Center, scanning over the booths where companies were recruiting for different positions and reviewing the skills students have to offer. Some of those companies included AFLAC, H&R Block, New York Life Insurance Company, Wells Fargo, Cosi, and New York State Troopers.

Good luck to all students who applied for a position and thanks to the companies for recruiting at CW.

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