html table row remove smooth effect jquery

html table tr remove smooth effect

HTML table row remove smooth effect using jquery.table row remover using jquery with smooth animate effect.
SCRIPT
var original = $('table').html();
$("#reset").click(function() {
    $('table').html(original);
    return false;
});

$('.delete').live('click', function() {
    $(this).closest('tr').children('td').addClass('deleteHighlight').animate({
        padding: 0
    }).wrapInner('
').children().slideUp(function() { $(this).closest('tr').remove(); }); return false; });​
html table row remove smooth effect jquery html table row remove smooth effect jquery Reviewed by Bhaumik Patel on 8:24 PM Rating: 5