Skip to content

EmergingEdTech logo

CW Chief Information Officer, Kelly Walsh is a recognized voice in the education technology community. Walsh has been running the popular “ed tech” web site EmergingEdTech.com since 2009. With new articles each week from Walsh and guest writers that include some of the industry’s recognized leaders, EmergingEdTech features a wealth of content intended to inspire teachers to engage students and improve learning outcomes. Walsh also writes the Technology Perspective column for University Business, a long standing higher education print and digital periodical.

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