Answer the question
In order to leave comments, you need to log in
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,
});
});
$('.submit').on('click', function(){
$("#add_recept").validate({
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question