Skip to content

Instantly share code, notes, and snippets.

@coderdiaz
Created October 30, 2015 23:17
Show Gist options
  • Save coderdiaz/6fbeefb632c0d75fc90e to your computer and use it in GitHub Desktop.
Save coderdiaz/6fbeefb632c0d75fc90e to your computer and use it in GitHub Desktop.
$.each(response.errors, function(i, row) {
var fila = $('<tr/>');
$.each(row, function(name, value) {
$('<td/>', {
text: value
}).appendTo(fila);
});
fila.appendTo('#errors_in_modal');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment