victorjonsson / jQuery-Form-Validator

[DISCONTINUED] jQuery plugin that makes it easy to validate user input while keeping your HTML markup clean from javascript code.
972 stars 476 forks source link

Initialize single input #698

Open applibs opened 6 years ago

applibs commented 6 years ago

I would like to initialize single dynamic input which is generated after other form inputs are initialized by code like this:

$('.new-input').not('[data-validation]').validate({
        modules: 'html5, security',
        lang: 'en'
    });

but it doesnt work. Input is without data attributes and onBlur error message not viewed.