Lets say I have this function and I'm adding some errors manually:
$('form').validate().showErrors({
"firstname": "I know that your firstname is Pete, Pete!"
});
When form is submitted first time, my custom error is added. Every thing works fine. My error is shown and form is not submitted.
But next time, my input is Valid!. looks like this invalid field is not persistence and input is Invalid only first time.
Is this the default behavior? Do I need to add my custom error every time the form is submitted?
By the way, there are no rules added to my input elements (beside some required field validation). No custom or remote rule.