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

128
Visualizações
prevent link click event except open in new window hotkey is pressed

So I have my website, a website without reload between site switches. For SEO reasons, my links look like this:

<a href="/site2" id="viewmore">View more</a>
<script>
// code is strongly simplified, for more clarity
document.getElementById("viewmore").addEventListener("click",function(e) {
   e.preventDefault();
   myHandler.goTo(e.currentTarget.href);
});
</script>

myHandler is the site handler in this case.

If I click the hotkey for opening a link in a new tab (on Mac it is CMD+Click), it does not work, as the event is prevented.

How to check if the link should open in a new tab or not? (Check if the hotkey is pressed or not)

about 4 years ago · Juan Pablo Isaza
2 Respostas
Responde à pergunta

0

Not sure I understood it, but try this

document.getElementById("viewmore").addEventListener("click", (e) => {
 // ctrlKey / altKey / shiftKey
 if (e.ctrlKey) myHandler.goTo(e.currentTarget.href);
 else e.preventDefault();
});
about 4 years ago · Juan Pablo Isaza Relatório

0

You can store the state of the CMD key in a variable and check it when the link is clicked.

let isCmdPressed = false;

document.addEventListener("keydown",(e)=>{
  if (e.key == "Meta"){
    isCmdPressed = true;
  }
});

document.addEventListener("keyup",(e)=>{
  if (e.key == "Meta"){
    isCmdPressed = false;
  }
});

document.getElementById("viewmore").addEventListener("click",function(e) {
   if (!isCmdPressed){
     e.preventDefault();
     myHandler.goTo(e.currentTarget.href);
   }
});
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