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.
2 parents 22e5929 + 06b5d68 commit c06327eCopy full SHA for c06327e
js/jquery.validationEngine.js
@@ -577,7 +577,7 @@
577
var form = $(field.closest("form, .validationEngineContainer"));
578
// Fix for adding spaces in the rules
579
for (var i = 0; i < rules.length; i++) {
580
- rules[i] = rules[i].replace(" ", "");
+ rules[i] = rules[i].toString().replace(" ", "");//.toString to worked on IE8
581
// Remove any parsing errors
582
if (rules[i] === '') {
583
delete rules[i];
0 commit comments