Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. JS
  2. // Populare the fragments
  3. $.each(videos, function(i) {
  4. $('#fragments li[class=template]')
  5. .clone()
  6. .attr("id", "video_" + i)
  7. .removeClass("template")
  8. .appendTo('#fragments')
  9. .append($('<a>')
  10. .attr("href", "#playback")
  11. .text(this.title));
  12. });
  13. $('#fragments li[class=template]').remove()
  14.  
  15. HTML
  16. <ul id="fragments" data-role="listview" data-inset="true">
  17. <li class="template"></li>
  18. </ul>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement