I made a Phonegap/cordova 2.3 app that loads a recipe list in json from the server and outputs the names of the recipes. In the browser it is working fine. But when I compile to iOS the json is not loaded, I see a blank screen. However when I put the server-output in a file in the public folder and load that file, it does work in iOS. So I would say there is nothing wrong with the json-output.
function load() {
$.getJSON('http://localhost:3000/nl/recipes.json', function(data) {
for (i in data) {
document.write(data[i].name+"<br>")
}
});
External hosts are allowed in the config-file:
<access origin="*" />
How can I fix this?
localhostfrom the phone could be the problem – mornaner Jan 18 at 8:56