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 22e5929 commit 06b5d68Copy full SHA for 06b5d68
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