Fellows, I am using AJAX to delete an item from my table
var DeleteLink = function () {
var LId = $("#HiddenLink_ID").val();
$.ajax({
type: "POST",
url: "/my/DeleteLink",
data: { Link_ID: LId },
success: function (result) {
$("#row_" + LId).remove();
}
})
}
I am able to .remove
the row with the ID
$("#row_" + LId).remove();
but what I want to do is to
Give it an animation such as
slide left
orslide right
when deleted
Is it possible with my current code?
cheers