Skip to content

Instantly share code, notes, and snippets.

@YutaWatanabe
Created October 12, 2014 08:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save YutaWatanabe/1ad6686a514d7084811d to your computer and use it in GitHub Desktop.
Save YutaWatanabe/1ad6686a514d7084811d to your computer and use it in GitHub Desktop.
play audio in phonegap
document.getElementById("playBtn")
.addEventListener("click", function(){
var media = new Media(
"/android_asset/www/sample.mp3",
function(){
console.log("success");
},
function(err){
console.log("fail");
}
);
media.play();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment