I'd like to use as close to full RESTful style as a browser can manage.
Do Backbone, jQuery, and Zepto to implement the non-browser supported methods PUT
and DELETE
in the same way? If so, how do they implement this?
Backbone:
myBackbone.model.destroy() // Calls Backbone.sync('DELETE', model, options)
jQuery / Zepto:
$.ajax({ url:'/testUrl', type:'PUT' })