Validation Error Message won't hide when valid

后端 未结 2 759
情深已故
情深已故 2021-01-19 00:13

UPDATE 2: I figured out that the title of the input was for some reason being displayed as an error message, I used ignoreTitle: tru

2条回答
  •  感情败类
    2021-01-19 00:40

    You have to add the success function to the validation :

    success: function(label,element) {
       $(".myerror").html('');
    },
    

    JSFiddle

提交回复
热议问题