I\'m developing an application with phonegap, and I have a sound file I want to play that\'s in a path like so www/Sounds/sound.mp3, and I\'m trying to access this file usin
Better try this to take into account any HTML5 History API code that might add in history entries with directories ("/"):
function get_phonegap_path () { var path = window.location.pathname return path.slice(0, path.indexOf("/www/") + 5) }