Skip to content

Master Your Phone Interview

The interview process is a major part of any job search.  It’s easy to get caught up thinking about what to wear, how to respond to questions, and what kinds of behaviors to avoid when you meet your potential employer face to face.  However, before you even get to the in-person interview, you likely will have at least one phone interview with a recruiter, HR manager, or hiring manager—if not all three.

It’s important to make sure you’re prepared so you can show your most professional self and guarantee you land that in-person interview. This article by Monster contributor Jon Simmons 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'); } }); }); });