$(function() { $('a.delBtn').click(function() { var $this = $(this); $.ajax({ url: '/monitor/delete', type: 'DELETE', dataType: "json", data: { id: $this.data('id') } success: function(event) { $this.parents('tr').remove(); } }); }) });