Skip to content

Instantly share code, notes, and snippets.

@nnarhinen
Created September 9, 2010 03:08
Show Gist options
  • Save nnarhinen/571291 to your computer and use it in GitHub Desktop.
Save nnarhinen/571291 to your computer and use it in GitHub Desktop.
$(function() {
$('.delete').click(function() {
$.ajax({
url: $(this).attr('href'),
type: 'DELETE',
success: function(data, status, request) {
alert(data.message);
}
});
return false;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment