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

116
Vistas
How do I force the input field to enter numbers only in the range 1 - 12?

I am trying to add a keyup event into my dynamically created input element.

The keyup event doesn't work when I execute the code. Where have I gone wrong?

    for(var j = 1; j < table.rows.length; j++){
         if(table.rows[j].cells.item(10).innerHTML != 0 && table.rows[j].cells.item(10).innerHTML != null){
              var row = t1.insertRow(t1.rows.length);
              var cell = row.insertCell(0);
              var cell1 = row.insertCell(1);
              var cell2 = row.insertCell(2);
                        
              cell.innerText = table.rows[j].cells.item(2).innerText;
              var formatter = new Intl.NumberFormat('en-IN', {
                              style: 'currency',
                              currency: 'INR',
              });
              cell1.innerText = formatter.format(table.rows[j].cells.item(10).innerText);
                        
              var input=document.createElement("input");
              input.style.textAlign="center";
              input.className="installments";
              input.type="number";
              input.placeholder = "range (1-12)"                       

              $(function() { 
                  $('.installments').keyup(function() {
                      const inputVal = parseInt($(this).val());
                      console.log(inputVal); //shows nothing as I give input

                      if (inputVal <= 0 || inputVal > 12 || parseString(inputVal).includes('.')){
                           $(this).val()="";
                           alert("Installments should be within 1-12 months range and should be a whole number");
                      }
                  });
              });
                          
              input.style.width="10em";
              cell2.appendChild(input);
        }
  }
about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

First of all - remove the keyup event listener and the shortcut for $(document).ready() outside of the loop. You are basically creating the event listener in every iteration of the (nested) for loop.

Then, when you move the event listener outside of the loop, use event delegation in order to target nodes which will be added in the future. For example $(document).on('keyup', '.installments', event => {}).

For more info regarding event delegation in jQuery, please see here

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