I use the jquery validation plugin. However, the errorPlacement function won't be executed. No console logging happens if validation errors occur. What to do? I use jquery 1.10.3, I tried 1.9.0 as well.
$("#rateform").validate({
debug: true,
rules: {
stars: {
required: true,
min: 1
},
errorPlacement: function(error, element) {
console.log(element);
}
}
});