Skip to content

Learning With Fun at the BBA Games

The Office of Bachelor Studies & Returning Students collaborated with Prof. Paula Cancro’s Project Management class to put together an interactive and informative event called The BBA Games. The setup included 5 different stations where current BBA students informed other students about the benefits of the BBA program. Every station had traditional games intended to have fun, but also to educate students about the benefits of the program. The event included free popcorn and raffles.

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