Guest User

Untitled

a guest
Feb 19th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. var items = ...;
  2.  
  3. var item_template = _template('<li class="song-<%= id %>"><%= title %> by <%= artist %></li>');
  4. var html = '';
  5. items.each(function(item){
  6. html += item_template(item);
  7. });
  8.  
  9. $('body').html(html);
Add Comment
Please, Sign In to add comment