Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1005725
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T08:20:36+00:00 2026-05-16T08:20:36+00:00

at the moment i’m using this validation plugin: ( http://www.position-absolute.com/articles/jquery-form-validator-because-form-validation-is-a-mess/ ) but when it

  • 0

at the moment i’m using this validation plugin: (http://www.position-absolute.com/articles/jquery-form-validator-because-form-validation-is-a-mess/)

but when it comes to the part of validating i have a problem.

If i want to be able to validate a element which doesn’t exist from the beginning, it only validates it when i press submit. But i want to be able that the element gets a validation while especially the focus get lost. on a element which is there all the time i can type, focus lost, and it writes “something wrong” and disapear if i changed the value to anything correct. but if i do the same thing on a element which i added with the jquery append function, it won’t do anything until i press submit.

anyone a simple solution for this. perhaps with the jquery .live function?

this is my script:

var use_ajax=true;
$.validationEngine.settings={};

$("#contact-form").validationEngine({
    inlineValidation: true,
    promptPosition: "centerRight",
    success : function(){use_ajax=true},
    failure : function(){use_ajax=false;}
 })

and this is a sample of an element which get added by append:

<tr>
   <td><label for="email">Nummer</label></td>
   <td><input type="text" value="" id="nummer" name="nummer" class="validate[required]"></td>
   <td>&nbsp;</td>
</tr>

The accepted answer i had first, won’t work with this:

      $("#contact-form").validationEngine({
        ajaxSubmit: true,
        ajaxSubmitFile: "submit.php",
        ajaxSubmitMessage: "Contact saved succesful! <br> <img src=''/> <a href='test.php'>TestLink</a>",
        ajaxSubmitExtraData: "contact=john",
        success :  false,
        failure : function() {}
      });
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T08:20:37+00:00Added an answer on May 16, 2026 at 8:20 am

    This is normal.

    When you bind the validation to your inputs, bindings for focus, blur etc are bound to the inputs. when you add an input item, they are not bound.

    To bind them to, call the validation binding again after you added new inputs.

    It might be so that the elements that were bound, will get second bindings, so you might have to unbind the validator:

    $.removeData($('#my_form_id'),'validator');
    

    and then bind it again

    $('#my_form_id').validate()
    

    @Edit to release any binds on an object, you can do .unbind() this is for events tough. I think jqtransform works on a class selector ? like class=”jqtransform”, you can try to remove that class

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.