[jQuery] Event is not triggered when the <tr> removed from one table to another table

[jQuery] Event is not triggered when the <tr> removed from one table to another table


Hi I have a query(JQuery) here. can you plz help me in fixing the
issue with this code.
That is when I click on <tr> of first table that should get removed
from first table and added to second table. It is happening fine and
good. But when I double click on the <tr> that is added to second
table no event is triggered. Why?
$("tr").dblclick(function(event){
        var row = $(this).html();
        $(this).remove();
        $("#bottomTable").append("<tr>"+row+"</tr>");
});
do I need to call any method?