Cannot send cross domain requests with Cordova. Whitelisting doesn't work
问题 I cannot make cross domain request using Cordova. Spent several hours on this and still not sure what is wrong. Maybe someone has dealt with problem like this? Thanks! . js file: //works fine, test.html - local file $.get("test.html",function(data,status){ alert("Data: " + data + "\nStatus: " + status); }); //does not do anything $.get("http://www.stackoverflow.com",function(data,status){ alert("Data: " + data + "\nStatus: " + status); }); Project Config file: .. <access origin="stackoverflow