Skip to content
There is no substitute for YOU.
What sparks your interest? What makes you happy? Where do you see yourself employed now and in the future?
Personal Attention
Our campus environment is highly personal and our culture centers on service to students.
Your appointment will include a one-on-one meeting with an admissions counselor.
We look forward to talking with you soon!
• Monday through Thursday
9:30am – 7:00pm
• Friday & Saturday
9:00am – 2:00pm
Contact Admissions
If The College of Westchester is on your radar, we’d love to hear from you. Knowledgeable, friendly counselors can answer your questions about our academic programs, admissions requirements, financial aid and more.
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');
}
});
});
});