I'm trying to build up Ajax-Validations by using the jQuery-Event .blur() I've set the field names to the id of the input-fields to identify them and giving the required data for validation by an ajax-request to the Controller. So far, so good, I could start with the validation, but here's the question: If there's an error - How do I send the Errormessage back to jQuery, so that I can do another ajax-request to give it out?
Thanks to all help, that'll hopefully come.
Here's the JQuery-Script so far:
$('.registration').blur(function(){
var id = $(this).attr('id');
var value = $(this).val();
var dataString = 'id=' + id +'&value=' + value;
$.ajax({
type: "POST",
url: "users/validate",
data: dataString,
cache: false,
success: function(){ }
});
});