Skip to content

Ace Your Next Job Interview

Scoring a job interview can be both exciting and nerve-racking. Taking some time to check in with yourself before you suit up about what your goals are and what’s important to you can help you zero in on how to answer questions your potential employer may ask. Plus, knowing how to act during the interview can ensure you present the best version of your authentic self. Check out these quick & easy tips from Forbes to help you ace the interview. 

http://news.monster.com/a/business/10-quick-easy-tips-to-rock-your-next-job-interview-159ffb?wt.mc_n=CRM_US_B2C_NEWS_Ent_151116

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