Skip to content

Latest commit

 

History

History
executable file
·
16 lines (14 loc) · 271 Bytes

File metadata and controls

executable file
·
16 lines (14 loc) · 271 Bytes

3.1 Disable validation for a specified field

jQuery plugin:

$('#user_email').jsFormValidator({
    disabled: true
});

Pure Javascript:

var field = document.getElementById('user_email');
FpJsFormValidator.customize(field, {
    disabled: true
});