//start the ajax $.ajax({ // server url url: "http://localhost:8080/CCSCalcApp/resources/ccscalc", //GET method is used type: "GET", //pass the data data: data, //success success: function (html) { $('#home').append(html); } });
When I test this on my ipad of on my android phone everything works fine, but when I test it on my iphone the result is no displayed as I would expect.
No, not without any more information. Have you tried enabling the debug console on your iPhone? Try adding an error function and see if the request is failing.