Skip to content

Instantly share code, notes, and snippets.

@pcdinh
Created February 3, 2010 08:17
Show Gist options
  • Save pcdinh/293470 to your computer and use it in GitHub Desktop.
Save pcdinh/293470 to your computer and use it in GitHub Desktop.
function _ajax_request(url, data, callback, type, method) {
if (jQuery.isFunction(data)) {
callback = data;
data = {};
}
return jQuery.ajax({
type: method,
url: url,
data: data,
success: callback,
dataType: type
});
}
jQuery.extend({
put: function(url, data, callback, type) {
return _ajax_request(url, data, callback, type, 'PUT');
},
delete_: function(url, data, callback, type) {
return _ajax_request(url, data, callback, type, 'DELETE');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment