I’ve checked this in firebug on Chrome and FF. No errors are reported and nothing is logged to the console.
UPDATE: Plugin is working but my placement of errors is making them invisible.
If I remove the errorPlacement Validator starts working again. What am I missing?
<script>
$(document).ready(function(){
$("#surveyForm").validate({
errorPlacement: function(error, element) {
if ( element.is(":radio") )
error.appendTo( element.parent().next().next() );
else if ( element.is(":checkbox") )
error.appendTo ( element.next() );
else
error.appendTo( element.parent().next() );
}
});
});
</script>
I’ve managed to get it working using your javascript and the HTML found at http://docs.jquery.com/Plugins/Validation – is there any chance you can post the HTML form?