$(document).ready(function() { $('.delete span').click(function() { var commentContainer = $(this); commentContainer.slideUp( 'high', function() { $(this).closest('tr').remove(); } ); });