Level 88
You can pass in a success callback in the validate method to perform your action. The done method, in this case, is redundant.
function validateFormAdd(formName) {
$("#"+formName).validate({
rules: {
...
}.
success: function(label) {
showToastr('Created', 'Tag Created Successfully!', 'success');
}
});
}
Documentation: https://jqueryvalidation.org/validate/#success