A
A
Alexey2015-11-14 02:11:00
JavaScript
Alexey, 2015-11-14 02:11:00

How to validate new elements in jquery validation?

Understanding the jqueryvalidation.org validator

$(document).ready(function() {
  jQuery.validator.setDefaults({
  		errorElement: 'em',
    errorClass: 'invalid',
    validClass: 'success',
  });	
    
$("#add").validate({
    rules:{
      title:{
        required: true,
        minlength: 5,
        maxlength: 80
      }
    },
    messages:{
      title:{
          required: "Это поле обязательно для заполнения",
          minlength: "Минимум {0} символов",
          maxlength: "Максимум {0} символов",
      },
    },
  });
  $(".select_req").rules( "add", {
    required: true,
  });

});


An element with the select_req class is validated normally, but elements with this class but added after page generation are not validated. Tried running the validator after the line
$('.submit').on('click', function(){
    $("#add_recept").validate({

But nothing happened...

Answer the question

In order to leave comments, you need to log in

1 answer(s)
V
Vladimir, 2015-11-14
@dzheka3d

When you add rules for the first time $(".select_req").rules, the validator only adds to those that are currently on the page, you need to repeat this again when you add them to the page.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question