Created
October 30, 2015 23:17
-
-
Save coderdiaz/6fbeefb632c0d75fc90e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$.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