Skip to content

A Retail Experience

With over 20 years of experience in the retail industry, Jose Cortez has worked for important companies in the sector including Limited Brands. Last month Jose joined JCrew’s Managing Global Sales Audit Operations. Graduated from CW (then WBI) in 1993, Cortez came back to speak to CW students about his experience in the business world.

A member of the College Advisory Council at CW, Cortez shared with the Management Applications and Theory class, anecdotes that illustrated how competitive the retail industry is, the role of a manager, the importance of networking, and some challenges he still faces, “Get rid of hobbies that drain you and don’t help your career… and find the balance between work and family. I was a workaholic for many years, but I finally found the perfect balance,” said Cortez. 

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