Skip to content

Spring Clean Your Workspace

Though online students have the ability to work from almost anywhere, having a designated workspace can be helpful to improve focus and productivity. Like any space you spend a significant amount of time in, the condition and degree of organization can affect your mood, your concentration, and your energy-all important to success when pursuing an online degree. Similar to how we think to spring-cleaning our homes, it’s important to periodically de-clutter, dust, and air out that workspace as well, whether it’s a room in your house, or simply a small corner or alcove within a room. Your car counts too!

This article offers some ideas for breaking your spring-cleaning down into smaller tasks if  doing it all in one go isn’t realistic for your schedule.

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