Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

121
Visualizações
Combining two functions Pure JS

How can I combine these two functions into one? Now I have two functions that do the same thing: close the search window on the site - by pressing escape and by pressing outside a certain .

    searchOverlay.addEventListener('keydown', function(event){
        if(event.key === "Escape"){
            body.classList.remove('search-opened');
            event.stopPropagation();
        }
    });

    searchOverlay.addEventListener('click', function (e) {
        if (e.target.closest('.search-inner') === null) {
            body.classList.remove('search-opened');
            e.stopPropagation();
        }
    });
}
about 4 years ago · Juan Pablo Isaza
2 Respostas
Responde à pergunta

0

You could even simply create an event listener that supports both cases

function removeSearchOpenedClass(event) {
  if (event.key === "Escape" || !event.target.closest(".search-inner")) {
    body.classList.remove('search-opened');
    event.stopPropagation(); 
  }
}
searchOverlay.addEventListener('keydown', removeSearchOpenedClass)
searchOverlay.addEventListener('click', removeSearchOpenedClass)
about 4 years ago · Juan Pablo Isaza Relatório

0

You can declare a function and call it in both callbacks.

function doStuff(e){
    body.classList.remove('search-opened');
    e.stopPropagation();
}

searchOverlay.addEventListener('keydown', function(event){
    if(event.key === "Escape"){
        doStuff(event)
    }
});

searchOverlay.addEventListener('click', function (e) {
    if (e.target.closest('.search-inner') === null) {
        doStuff(e)
    }
});
about 4 years ago · Juan Pablo Isaza Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda