Skip to content

Want To Be More Productive? Stop Doing This!

As a student, chances are you’re juggling a variety of deadlines and commitments—and that little thing called your life. We’ve been conditioned to think that multitasking can help us get more done in less time, and thanks to the ease of navigating between various pages, tabs, and apps on our devices, we can fall into the trap of thinking we’re actually accomplishing more in less time.

The true story is that multi-tasking can actually make us less productive—as much as 40% less! This blog post by Erica Ferguson for the Freelancers Union explains.

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