Problem appending table

Problem appending table

Hello,

Im trying to copy a div and insert it into a tbody. But I cant get it to retrieve the html from the div.

<div id ="dtltmpl">
<tr> 
<td>some text</td> 
<td>some text</td>          
<td>some text</td> 
</tr>
</div>

  1.  $("#copyDtl").click(function () {       
  2.  var $dtl = $("#dtltmpl").html();       
  3.  alert($dtl);                           
  4.  $("#dtltbl > tbody").append($dtl);     
  5. });