/** * Date: 08/01/13 * Copyright © Michael Johnson 2013 */ var listenMedia; // Listener that will invoke the onDeviceReady() function as soon as phonegap has loaded properly document.addEventListener("deviceready", onDeviceReady, false); function onDeviceReady() { navigator.splashscreen.hide(); } function listen() { if ($("#listenButton").children().text() == "Click here to listen to stories and facts relating to the museum") { $("#listenButton").children().text("Stop"); if (listenMedia == null) { listenMedia = new Media("/android_asset/www/audio/listen.mp3", console.log("Created listenMedia."), console.log("Error creating listenMedia.")); } listenMedia.play(); } else { $("#listenButton").children().text("Click here to listen to stories and facts relating to the museum"); listenMedia.stop(); } }