Skip to content

Employers Impressed by CW Students

The Office of Career Services hosted its annual Spring Career Fair. The employers were very impressed by the professional dress of the students as positive feedback was given. Some of the companies that attended were Aflac, Doctors Express, TD Bank, Hertz Company, TEKsystems, Citibank and many others. 

Thank you to all who encouraged students to attend the Spring Career Fair!

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