Hi,
I have a button that when clicked, gets the row in the table that was clicked on.
So I have:
$("#someId").remove();
I want to highlight the row that is being deleted, and fade it out (it is being deleted).
Is there a way to do this with jQuery? I tried: $("#someId").fadeOut("slow").remove() but tat didn't seem to show anything.