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

179
Vistas
Javascript text replacemant same way like "Emiliy is away" game. Onkeydown issue

I'm making art web project where I wan't to replace user inputed text to my own phrases in infnity.

Similar way like in game "Emily is away", but that will be only one phrase repeat in infinity.

Something like this: "text. text. text. text. text. text. text. text. text. text. text. text. text. text. text. text. text. text. text. text. text. text. text. text"

When user will be typing, the result will be always the same phrase.

My code looks this way:

  function myFunction() {
    result.innerHTML = "TEXT";
  }
<input type="text" onkeydown="myFunction()">
<div id="result"></div>

I will be really glad for help.

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

0

let myInput = document.querySelectorAll('input');

myInput.forEach(input => {
  input.addEventListener('keydown', function() {
    result.innerHTML += "TEXT ";
  });
})
<input type="text">
<div id="result"></div>

about 4 years ago · Juan Pablo Isaza Denunciar

0

Is this what you mean? It will append the string to the existing output, rather than replacing it:

function myFunction() {
    result.innerHTML += "TEXT ";
  }
<input type="text" onkeydown="myFunction()">
<div id="result"></div>

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