Skip to content

What Not To Put On Your To-Do-List

The To-Do List. For many of us, it’s essential to our day-to-day life and helps us stay balanced. Even if you don’t put pen to paper, chances are you’ve got a mental checklist of what you need to get done.

What’s on the list can make a big difference in what you actually square away and how successful you feel. Unhelpful list-making habits could even be holding you back. Are you maybe putting things on that to-do-list that shouldn’t be there and taking up valuable space from what you should really prioritize? This post from Fast Company shares a few things to leave off so you can free up your thinking and energy for what’s really important.

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