JQuery Validation - Remove .checked class when is not 'success'

32 Views Asked by At

can you help me understand how to remove .checked class added with:

success: function(label) {
    label.addClass("checked");
}

when the input is not 'success

1

There are 1 best solutions below

0
On

Check for the existence of the 'success' class

if (!$(input).hasClass('success')){
    label.removeClass('checked')
}