Skip to content

Instantly share code, notes, and snippets.

@joelibaceta
Created August 27, 2015 23:18
Show Gist options
  • Save joelibaceta/6f770b46872f4e7d0f41 to your computer and use it in GitHub Desktop.
Save joelibaceta/6f770b46872f4e7d0f41 to your computer and use it in GitHub Desktop.
function ajax_delete_url(url, params, callback){
$.ajax({ url: url, type: 'DELETE', data: params, success: callback });
}
function ajax_get_url(url, params, callback){
$.ajax({ url: url, type: 'GET', data: params, success: callback });
}
function ajax_post_url(url, params, callback){
$.ajax({ url: url, type: 'POST', data: params, success: callback });
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment