im trying to impelement a technique to delete stories with jquery animation exactly like wordpress
this is my script part :
$(function(){
$('#jqdelete').click(function() {
$(this).parents('tr.box').animate( { backgroundColor: '#cb5555' }, 500).animate( { height: 0, paddingTop: 0, paddingBottom: 0 }, 500, function() {
$(this).css( { 'display' : 'none' } );
});
});
});
but not working am i wrong in any part of my code ?
display: blockbut use a different display model and so these things tend to not work.