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

462
Visualizações
How to hide url on mouse hover of a hyper link

I'm my backend part of the app which is built in PHP Symfony I have HTML twig files, I want to change behavior for some href link, I want to hide URL in the bottom left corner after I hover them, I tried this solution that needs to change URL text to Contact, but it won't work

<a 
  class="activo" 
  href="link" 
  onmouseover="window.status='Contact'"
  onmouseout="window.status=''"
>
  Click
</a>

any help?

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

0

TL;DR; Simply use JavaScript, like:

window.location.href = "https://stackoverflow.com";

Remove the "<a ...>" element's href-attribute.

Then make it trigger a JavaScript function:

<a onclick="myFunction()">my link</a>

Finally, simply use JavaScript to redirect, like:

<script type="text/javascript">
  function myFunction() {
    window.location.href = "https://stackoverflow.com";
  }
</script>

Note that you may need to add CSS to set cursor, I mean, already existing CSS may check href's existence, and not apply once href is removed.

Reusing same function

<a data-url="https://stackoverflow.com"
   onclick="myFunction(this)">my link label</a>

<!-- In case you are using Twig or Blade: -->
<a data-url="{{ 'https://example.com' }}"
   onclick="myFunction(this)">my other link</a>

<script type="text/javascript">
  function myFunction(element) {
    window.location.href = element.getAttribute('data-url');
  }
</script>
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