validate icon indicating copy to clipboard operation
validate copied to clipboard

Multiple form use validate,but the first one can useful

Open unknown-kk opened this issue 8 years ago • 1 comments

As the title,i have 3 form has class ajax_form , $(".ajax_form").validate({...}) but the first one work ,others not

unknown-kk avatar Nov 22 '16 06:11 unknown-kk

There may be a particularity in your case. But you can try to fix this problem using the jQuery.fn.each method:

$('.ajax_form').each({

	$(this).validate(/* {...} */);

});

DiegoLopesLima avatar Nov 22 '16 10:11 DiegoLopesLima