Hi all in Jorn's Form Validation example page( http://jquery.bassistance.de/ajax-validation/demo-test/milk/) is presented a form with 2 radio buttons. Jorn uses this approach(next next) to display error message:
errorPlacement: function(error, element) { if ( element.is(":radio") ) error.appendTo( element.parent().next().next() ); My question: how to display an error message after the last(I don't know the number of radio buttons) radio field named 'rIngredient'? Marco Antonio