$('#myTable tr').click({
$
(this).remove();
return false;
};
what if i also wanted to pass a certain value as a parameter to this function.
basically what i wanna do is, i have a 'x' on each row so when a user clicks it
i want the row to delete and at the same time wish to use ajax and delete that
row from the database as well.