I try to clone a row and then append it as below :-
codeTable.$("tr:first").clone().appendTo(codeTable);
The code successfully clones and appends the <tr>
element.
But when I try to select with Jquery, the new element is not included
on the result.
codeTable.$('tr');