I have a web view that in it's HTML/Javascript makes an Http call with Put/Delete methods. those calls seems to be ignored (I test them on chrome and they work fine).
Any idea?
Here's the JS code that inside the WebView:
var req = new Backbone.Model(auth);
$.ajax({
type: PUT,
url: 'some_url',
data: JSON.stringify(req)
});
Note that this is an Ajax call from a jQuery.
have you tried