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

346
Vistas
When I correct the invalid input(s) and try to submit again, the code will not execute

I have this code in javascript/jquery which takes input from a form with ID #account-save and is using ajax ajax_send.submit(false, action, data, account_save); to submit data to the server.

The following code will successfully submit the data. If the data submitted contains invalid inputs, the code below receive html that marked red those inputs containing the invalid data.

(function($, undefined) {
  "use strict";

  $(function() {
    $("#account-save").click(function(e) {
      var action = $(this).data('action') + '/edit';
      var data   = { 'form_data': $('#user-profile').serialize() }
      ajax_send.submit(false, action, data, account_save);
    });
  });

  function account_save(result = false) {
    if (result != false) {
      $('#user-profile').html(result.html);
    }
  }
})(jQuery);

The problem is, when I correct the invalid input(s) and try to submit again, the code above will not execute.

Is there anyone have the same problem? Any help would be appreciated.

about 4 years ago · Santiago Trujillo
1 Respuestas
Responde la pregunta

0

I think that when your html is being sent back, it is replacing the #account-save node entirely, meaning it has essentially been removed from the DOM as far your your .click method is concerned.

Change your $(document).on('click', '#account-save', function(e) to make to make it late binding. This way your event listeners can attach themselves to elements added to the DOM

about 4 years ago · Santiago Trujillo 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