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

210
Vistas
change event in EventListener doesnt trigger

So I made a small version of my problem. Here I am adding text into an input element. But when it is added it doesnt trigger the event listener.

function testFunction() {
  document.getElementById("testInput").addEventListener("change", () => {
    console.log("hi");
  });
}

function testText() {
  document.getElementById("testInput").value = "Hello there";
}

testFunction();
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <link rel="stylesheet" href="styles.css" />
    <title>Document</title>
  </head>
  <body>
    <script></script>
    <button onclick="testText()" style="height: 20px"></button>
    <input id="testInput" />
    <script src="script.js"></script>
  </body>
</html>

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

0

You need to create the event manually and use dispatchEvent() method to fire the event to the target element.

function testFunction() {
  document.getElementById("testInput").addEventListener("input", () => {
    console.log("hi");
  });
}

function testText() {
  document.getElementById("testInput").value = "Hello there";

  let event = new Event("input");
  document.getElementById("testInput").dispatchEvent(event);
}

testFunction();
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <link rel="stylesheet" href="styles.css" />
    <title>Document</title>
  </head>
  <body>
    <script></script>
    <button onclick="testText()" style="height: 20px"></button>
    <input id="testInput" />
    <script src="script.js"></script>
  </body>
</html>

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