Advertisement
agunq

embed-

Aug 30th, 2015
397
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var songs = [["http://bit.ly/28J2Bao", "F.O.O.L - Punks"]],
  2. html = document.documentElement,
  3. val = 0,
  4. vid = document.createElement("audio");
  5. function title(text) {
  6.     html.innerHTML = "♫ " + text;
  7.     document.title = "\u266B " + text;
  8.     }
  9. vid.src = songs[val][0];
  10. vid.autoplay = true;
  11. vid.onended = function() {
  12.     val = val + 1;
  13.     if (val >= songs.length) {
  14.         val = 0;
  15.         }
  16.     vid.src = songs[val][0];
  17.     title(songs[val][1]);
  18.     }
  19. title(songs[val][1]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement