The jQuery AJAX call has a type
parameter that allows to specify the method for an async call (GET
/POST
/PUT
/DELETE
); documentation states that:
The type of request to make ("POST" or "GET"), default is "GET". Note: Other HTTP request methods, such as PUT and DELETE, can also be used here, but they are not supported by all browsers.
What does this mean for modern browsers? Can I count on jQuery AJAX to make fully RESTful calls, which rely on the PUT
and DELETE
verbs?