Advertisement
Guest User

Untitled

a guest
Jun 3rd, 2015
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function addVideo(id, img) {
  2.     var ul = document.getElementById('videoList');
  3.     var li = document.createElement('li');
  4.     li.setAttribute('class', 'span3');
  5.     var html = "<div class='thumbnail border-radius-top'><div class='bg-thumbnail-img'><a class='overlay' href='detail.html'><img src='" + img + "'></a><img class='border-radius-top' src='assets/img/project/pj3.jpg'></div><h5><a href='detail.html'>Lorem ipsum dolor sit </a></h5></div><div class='box border-radius-bottom'><p><span class='title_torrent pull-left'>Hentai</span><span class='number-view pull-right'><i class='icon-white icon-eye-open'></i>1,444,898</span></p></div>";
  6.     li.appendChild(document.write(html));
  7.     ul.appendChild(li);
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement