"readme.txt" not found. Phonegap example are not working on iphone and android
document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, gotFS, fail);
}
function gotFS(fileSystem) {
fileSystem.root.getFile("readme.txt", null, gotFileEntry, fail);
}
function gotFileEntry(fileEntry) {
console.log(evt.target.error.code);
}
function fail(evt) {
console.log(evt.target.error.code);
}