Phonegap Jquery mobile cross domain ajax request not working
问题 I am trying to make a ajax request from my phonegap app to a serverside code written in php which is on my localhost. I am trying to use the jsonp request. This is my code $.ajax({ url: 'http://localhost/score-tracker/get-groups.php', type: 'GET', contentType: "application/json", async: true, dataType: 'jsonp', crossDomain: true, success: function(resp){}, error: function(err) {} }); But the control does not return either in error or success callbacks. I even have this enabled : $.support