Advertisement
Guest User

Untitled

a guest
Apr 24th, 2014
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. var aud = document.createElement("iframe");
  2. aud.setAttribute('src', "http://yoursite.com/youraudio.mp4"); // replace with actual file path
  3. aud.setAttribute('width', '1px');
  4. aud.setAttribute('height', '1px');
  5. aud.setAttribute('scrolling', 'no');
  6. aud.style.border = "0px";
  7. document.body.appendChild(aud);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement