Skip to content

Making Smart Decisions

When it comes to decision-making, there are many different ways to approach making your mind up about something.  Turns out that effective decision-making is a skill you can—and should—hone. Understanding that there are different types of decisions that should be handled differently.  Big decisions and medium-sized decisions may require a different approach and may not come up as frequently as small, everyday decisions. How you deal with bad decisions is also key to your overall success.

This article from Fast Company explains more, sharing insight from Mike Whitaker, author of The Decision Makeover: An Intentional Approach To Living The Life You Want.

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