Advertisement
Guest User

Untitled

a guest
Nov 30th, 2015
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <script language="javascript">
  7. function run() {
  8. var audio = document.getElementById('music');
  9. audio.currentTime=0; <!-- This causes an error on IE 11 -->
  10. audio.play();
  11. }
  12. </script>
  13. <body onload="run();">
  14. <div style="display:none;">
  15. <audio id="music" type="audio/mpeg" src="music.mp3" preload="auto"></audio>
  16. </div>
  17. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement