Advertisement
Thelorgoreng

music embed

Oct 23rd, 2015
316
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function __init__() {
  2.     var songs = [["http://media.soundcloud.com/stream/r9PNiUHEcXAI", "Slipknot - The Devil In I"]],
  3.     html = document.documentElement;
  4.     html.innerHTML = "";
  5.     var song = songs[Math.floor((Math.random() * songs.length))];
  6.     document.title = song[1];
  7.     var embed = document.createElement("embed");
  8.     embed.setAttribute("src", "http://www.4shared.com/web/embed/audio/file/Zf4C-Tzjce?type=NORMAL&widgetWidth=530&showArtwork=true&playlistHeight=0&widgetRid=203180005632.mp3");
  9.     embed.setAttribute("quality", "high");
  10.     embed.setAttribute("quality", "high");
  11.     embed.setAttribute("wmode", "transparent");
  12.     embed.setAttribute("width", "200");
  13.     embed.setAttribute("height", "10");
  14.     embed.setAttribute("name", "billy");
  15.     embed.setAttribute("type", "application/x-shockwave-flash");
  16.     html.appendChild(embed);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement