Skip to content

Instantly share code, notes, and snippets.

@jhonnrodr
Created November 16, 2014 22:13
Show Gist options
  • Save jhonnrodr/bbcac1da1945e3260d68 to your computer and use it in GitHub Desktop.
Save jhonnrodr/bbcac1da1945e3260d68 to your computer and use it in GitHub Desktop.
$.ajax({
type: "POST",
url: "/NewEmail",
data: { username: username }
}).done(function(data){
if(data.success == false){
var errores = '';
for(datos in data.errors){
errores += '<small >' + data.errors[datos] + '</small>';
}
$('#danger').fadeIn("fast").html(errores);
}else{
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment