We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59b3195 commit 24ab886Copy full SHA for 24ab886
form-validator/jquery.form-validator.js
@@ -310,7 +310,7 @@
310
var $parent = $input.parent(),
311
$errorSpan = $parent.find('span[class='+config.errorMessageClass+']');
312
if ($errorSpan.length > 0) {
313
- $errorSpan.text($input.valAttr('current-error'));
+ $errorSpan.append(', '+$input.valAttr('current-error'));
314
} else {
315
$parent.append('<span class="'+config.errorMessageClass+'">' + $input.valAttr('current-error') + '</span>');
316
}
0 commit comments