Skip to content

Job-Hunting? Don’t Make These Social Media Mistakes

By now it’s no surprise that potential employers scope out your social media. You’re probably well aware of some of the most important ones to remove or hide (drunk pictures, for example), but there are a few important ones you may not have thought about. So yes, take down or remove tags on any pictures or posts where you’re under the influence, but also edit your profiles for grammatical errors, cursing, excessive selfies, and more.

This article from Monster’s Lily Artis 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'); } }); }); });