Skip to content

Should Your Boss Know About Your Side Job?

Though continuing education while working tends to be viewed in a positive light, there is some gray area when it comes to balancing a job with other projects and commitments. In today’s work world, many people juggle multiple jobs to make ends meet or to gain experience, hone their skills, or prepare for a career shift. Even people with a full time position may find themselves balancing their main position with freelance work on the side. So-called “side hustles” have become increasingly common, but different employers may have different opinions and policies.

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