Skip to content

Job Hunting? What NOT to do

If you’re on the hunt for a job this summer, you’ve likely got a whole checklist of must-do’s and best practices in your virtual back pocket. There are also a few things that you definitely should not do if you want to land a job. Being mindful about how you know (or don’t know) a potential connection is especially important, as is crafting a thoughtful “ask. This article by Liz Ryan for Forbes shares five things that job seekers absolutely must not do.

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