Skip to content

Instantly share code, notes, and snippets.

@eikes
Created October 7, 2011 09:41
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eikes/1269911 to your computer and use it in GitHub Desktop.
Save eikes/1269911 to your computer and use it in GitHub Desktop.
Play MP3 in the background on iPhone in Safari browser
var mp3 = document.createElement("audio");
mp3.setAttribute('src', 'http://example.com/track.mp3');
mp3.load();
document.documentElement.appendChild(mp3);
mp3.play();
// use mp3.pause() to pause :=)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment