Currently I use this to display validation errors via ajax:
if (data.validation_failed == 1) { var arr = data.errors;
In the ajax response trying something like
.fail(function( data ) { var response = JSON.parse(data.responseText); var errorString = ''; $.each( response.errors, function( key, value) { errorString += '' + value + ''; }); errorString += '';