Skip to content

Stop Procrastinating—Now!

When we’re juggling a lot, it’s natural that we’ll focus on certain tasks and projects more than others.  However, sometimes it’s all too easy to keep putting off what we don’t want to do or are intimidated by. Whatever the reason, procrastination can put a damper on our productivity and hold us back at work or in school.

Thinking too much about something rather than just doing it can make it seem larger or more labor-intensive in our mind when really, if we just get started and break it into small pieces, we’ll see it’s not that hard to accomplish and cross off the list after all.

These tips from The Positivity Blog can help you get a handle on procrastination before it becomes a problem.

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