Skip to content

How to Turn “Busy” Into Productive

Have you ever suddenly looked at up the clock in the afternoon feeling like you haven’t actually gotten anything done?  With many of us juggling work, school, family, and social obligations (and this is to say nothing of the endless stream of notifications flashing across the various screens we look at all day, every day), it can be easy for the day to get away from you, even if you feel like you never even stopped for a break. The good news is, there’s something you can do about it.

This article from Forbes by Jules Schroeder shares some expert tips to help turn a “busy” day into a productive one.

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