Lauren Crider

Bio
Lauren has been with Renaissance Personnel Group since college graduation in 2005. Starting as an account manager, she was promoted in 2018 to Executive Vice President. Most of Lauren’s role focuses on cultivating and managing relationships with clients and identifying new opportunities within those existing relationships. A key component of success for Lauren is using talent assessments to match candidates within hiring companies and leveraging the results for long-term employee and employer satisfaction. Lauren educates hiring managers on how to identify and engage employees using these assessments and additionally, helps companies facilitate executive team-building retreats to ensure communication and collaboration. Lauren is a Certified Professional Values Analyst, a Certified Professional Behavioral Analyst and a Certified Professional TriMetrix HD Analyst.
Overachiever
Biggest Thrill
Favorite Place
Favorite Restaurant
if (!window.fbPopoverInitialized) { window.fbPopoverInitialized = true; document.addEventListener('DOMContentLoaded', function () { var popovers = document.querySelectorAll('[fb-popover]'); popovers.forEach(function (popover) { var toggle = popover.querySelector('[fb-popover-button]'); var accnElement = popover.querySelector('[fb-accn]'); var content = popover.querySelector('[fb-popover-content]'); var lastClosedTime = 0; // Almacenar el tiempo de cierre para cada popover var minTimeBeforeReopen = 500; // 0.5 segundos en milisegundos var openedWithKeyboard = false; toggle.setAttribute('aria-label', accnElement.textContent || accnElement.innerText); toggle.setAttribute('aria-controls', content.id); toggle.addEventListener('keydown', function (event) { if (['Enter', ' ', 'Spacebar'].includes(event.key)) { openedWithKeyboard = true; } }); toggle.addEventListener('click', function () { var currentTime = Date.now(); var elapsedTime = currentTime - lastClosedTime; if (elapsedTime < minTimeBeforeReopen) { return; // No se permite abrir el popover si no ha pasado el tiempo mínimo } var expanded = toggle.getAttribute('aria-expanded') === 'true'; toggle.setAttribute('aria-expanded', expanded ? 'false' : 'true'); if (expanded) { content.classList.remove('fb-popover--open'); lastClosedTime = Date.now(); // Almacenar el tiempo de cierre al cerrar el popover } else { content.classList.add('fb-popover--open'); lastClosedTime = 0; // Resetear el tiempo de cierre al abrir el popover setTimeout(function () { if (openedWithKeyboard) { focusFirstElementInContent(); } document.addEventListener('mousedown', clickOutsideHandler); // Cambiado de `click` a `mousedown` document.addEventListener('keydown', escapeKeyHandler); document.addEventListener('focusin', focusInHandler); }, 700); // Espera 0.7 segundos antes de enfocar el primer elemento } }); function focusFirstElementInContent() { var focusableElement = content.querySelector('button, [href], input, select, textarea, [tabindex]:not([tabindex="-1"])'); if (focusableElement) { focusableElement.focus(); } } function clickOutsideHandler(event) { // Cerrar el popover si se hace clic fuera, independientemente de cómo se abrió if (!popover.contains(event.target)) { toggle.setAttribute('aria-expanded', 'false'); content.classList.remove('fb-popover--open'); lastClosedTime = Date.now(); // Almacenar el tiempo de cierre al hacer clic fuera del popover document.removeEventListener('mousedown', clickOutsideHandler); document.removeEventListener('keydown', escapeKeyHandler); document.removeEventListener('focusin', focusInHandler); } } function escapeKeyHandler(event) { if (event.key === 'Escape' && toggle.getAttribute('aria-expanded') === 'true') { toggle.setAttribute('aria-expanded', 'false'); content.classList.remove('fb-popover--open'); lastClosedTime = Date.now(); // Almacenar el tiempo de cierre al presionar Escape document.removeEventListener('mousedown', clickOutsideHandler); document.removeEventListener('keydown', escapeKeyHandler); document.removeEventListener('focusin', focusInHandler); } } function focusInHandler(event) { if (!popover.contains(event.target)) { // Verifica que el foco no esté dentro del popover toggle.setAttribute('aria-expanded', 'false'); content.classList.remove('fb-popover--open'); lastClosedTime = Date.now(); document.removeEventListener('mousedown', clickOutsideHandler); document.removeEventListener('keydown', escapeKeyHandler); document.removeEventListener('focusin', focusInHandler); } } // Previene el cierre del popover si se hace clic dentro del contenido content.addEventListener('mousedown', function(event) { event.stopPropagation(); }); }); }); } 