Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

347
Views
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 answers
Answer question

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 Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!