- . PUT 1.5, 1.5. , , ajax 1.5, .
, , firefox chrome. , OPTIONS , , , OPTIONS a la CORS. , 1.5, . firefox OPTIONS. .
http:
var url = 'http://api.example.com/rest/action?key=123ABC&data={"value":55}';
$.ajax({
type: "PUT",
url: url,
data: {},
success: function(msg){
alert( "Data Saved: " + msg );
},
error: function(msg){
console.debug(msg);
}
});
source
share