Add this code to create a working clone function:
$.fn.clone = function() {
return this.pushStack(
jQuery.map( this,
function(i){
return i.cloneNode(true);
})
, arguments );
};
Use it like so:
$('#the_tr').clone().appendTo('#destination_table');
This code was based off SVN revision 200, and created partly in response
to http://proj.jquery.com/dev/bugs/bug/107/
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/
