I am trying to remove a row from one table and add it to another with jQuery. I've examined this similar Stack Overflow post and feel like I am doing roughly the same thing but am obviously missing something as what I am doing is not working. I know I've got the right row as the remove is working but the row is not being added to the new table.
jQuery
var row = $($.fn.colorbox.element()).parents('tr');
row.fadeOut(1000, function() {
$('#NewTableBody').append(row.remove());
});
Table Body
<tbody id="NewTableBody">