Script
function deleteThisRow()
{
$(this).closest('tr').fadeOut(400, function(){
$(this).remove();
});
}
HTML
<tr><td>blah blah blah</td><td><img src="/whatever" onClick="deleteThisRow()"></td></tr>
I've looked this up but the explanations didn't seem at all clear to me.
deleteThisRow,thiswill refer towindow, not the image. Why don't you bind the event handler with jQuery? – Felix Kling Jan 11 '12 at 9:48