Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

105
Vistas
Hover and selectors

I am completely new to Javascript / Jquery and I have a problem.

Suppose in my html page I have a number (undefined) of class to hover (when I hover something happens). Here I put 2 examples.

<div class='hover' id='hov33749'>Wikipedia</div>
<div class='hover' id='hov32747'>Google</div>

How to :

  1. Apply a function when I hover on Google or Wikipedia
  2. Retrieve the div corresponding to the hover (id, text, position on the page etc.)

I tried to put a random id and put some regex but it doesn't work well

I thank you in advance

about 4 years ago · Juan Pablo Isaza
2 Respuestas
Responde la pregunta

0

Since you are starting out with JavaScript, I'd suggest refrain JQuery for now and understand how the language itself works.

The following code adds an eventListener to all elements with class hover, the functionality of which is in onHover method

const onHover = (e) => {
    const id = e.target.id;
  const text = e.target.textContent;
    console.log(id, text);
}

const hover = document.querySelectorAll(".hover");
hover.forEach(item => item.addEventListener("mouseover", onHover));
<div class='hover' id='hov33749'>Wikipedia</div>
<div class='hover' id='hov32747'>Google</div>

about 4 years ago · Juan Pablo Isaza Denunciar

0

See JQuery documentation .hover()

$(".hover").each(function(){
    $(this).hover(function(){
        // Do something ...
        console.log("Text: " + $(this).text() + ", Id: " + $(this).attr("id"));
    });
});
about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda