Skip to content

Science-Based Productivity Tips

When you’re juggling a lot or trying to manage a big workload, time management can be a struggle. Students also trying to find time for school with family, social, and work obligations or a job search know this one all too well. It’s not just a matter of life-work balance or lack of willpower or focus. Prioritizing and working through the urge to multitask are just a few of the ways to increase your productivity. This SmartBrief article shares some helpful tips based on the latest brain science to help you get a handle on where your time goes.

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