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

196
Vistas
How to capture the change of 'data-value' in <button> tag ? (html, js)

How to capture the change of 'data-value' in tag ? (html, js)

// dropdown box

<button data-value="">'click'</button>
<ul>
 <li>option1</li>
 <li>option2</li>
</ul>

I need 1), 2), 3)

1) click li
2) data-value="" -> data-value="1"
3) $(button).on('change?', function() {} );

but change event support ONLY input, text tag not data-value and click event doesn't work. no change data-value right after 'click' event .

so HOW do i get the change event of 'data-value' ?

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

0

To detect changes to element attributes, you can use a MutationObserver

const btn = document.querySelector("button");

const observer = new MutationObserver((mutationList) => {
  mutationList.forEach(({ attributeName, oldValue, target, type }) => {
    if (type === "attributes" && attributeName === "data-value") {
      console.log(
        `${attributeName} changed from '${oldValue}' to '${target.dataset.value}'`
      );
    }
  });
});
observer.observe(btn, { attributes: true, attributeOldValue: true });

// Delegated event listener at <ul>
document.querySelector("ul").addEventListener("click", ({ target }) => {
  const li = target.closest("li");
  if (li) {
    const option = li.dataset.option;
    if (option !== undefined) {
      btn.dataset.value = option;
    }
  }
});
li { cursor: pointer; }
<button data-value="">'click'</button>
<ul>
 <li data-option="1">option1</li>
 <li data-option="2">option2</li>
</ul>

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