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

192
Visualizações
how do i get which href is clicked in Javascript

Below is my HTML code, how do I get the value of selected tag here

  <div id="myDropdownOptions" onclick="logType()">
          <a href="#about">about</a>
          <a href="#base">base</a>
          <a href="#blog">blog</a>
        </div>
about 4 years ago · Juan Pablo Isaza
1 Respostas
Responde à pergunta

0

The target property of the global Event object will give you the clicked element.

You can then use textContent to get the text from it (assuming that is what you want, only form controls (like input elements) have values.

function logType() {
    console.log(event.target.textContent);
}
<div id="myDropdownOptions" onclick="logType()">
  <a href="#about">about</a>
  <a href="#base">base</a>
  <a href="#blog">blog</a>
</div>

Note that the global Event object is deprecated, so you should replace your onclick attribute with the addEventListener method and use the event object that is passed as the first argument to the callback instead.

function logType(event) {
    console.log(event.target.textContent);
}

document
    .querySelector("#myDropdownOptions")
    .addEventListener("click", logType);
<div id="myDropdownOptions">
  <a href="#about">about</a>
  <a href="#base">base</a>
  <a href="#blog">blog</a>
</div>

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