Skip to content

Instantly share code, notes, and snippets.

@Frankobingen
Created July 3, 2016 15:19
Show Gist options
  • Save Frankobingen/faeae1e3bedd9443f7ec1154d78b9483 to your computer and use it in GitHub Desktop.
Save Frankobingen/faeae1e3bedd9443f7ec1154d78b9483 to your computer and use it in GitHub Desktop.
.done(function(data) {
var html = "";
data.forEach(function(el) {
html += '<li ';
html += 'data-elementid="' + el.id;
html += '>';
html += el.name;
html += '</li>';
});
$('#result-list').append(html)
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment