I am developing a mobile application using PhoneGap, and I have to access some services from another project. I am using jquery-2.0
I solved the problem with the "GET" call, but now I am trying to make a "PUT" call and it's the same problem, always fails.
$.ajax({ url: '/echo/html/', type: 'PUT', data: "email=a@b.com", success: function(data) { alert('Success.'); } });