PASS: {
required: true,
minlength: 4
},
удалить последнюю запятую в этом блоке кода, IE не любит дополнительные запятые в JSON
Позднее редактирование: полный правильный код:
$(function() {
$.getScript( "http://jquery.bassistance.de/validate/jquery.validate.js", dependsOnValidate );
});
function dependsOnValidate() {
$.validator.setDefaults({ submitHandler: function() { alert( "Valid" ); } });
$("#form_login").validate({
rules: {
EMAIL: {
required: true,
email: true
},
PASS: {
required: true,
minlength: 4
}
},
messages: {
EMAIL: " need a valid email",
PASS: {
required: " required",
minlength: " too short"
}
}
});
}