<table id = "ttt">
<tr>
<td>aa</td>
</tr>
</table>
위와 같은 테이블을 jquery로 clone을 해서 작업을 할려고 하는데
해당 내용을
$('#ttt').find('table[id^='+target+']:first').clone(true).wrapAll("<table/>").parent();
와 같이 복사 한후에 console.log로 확인을 해보니깐
<table id = "ttt">
<tr>
<td>aa<td>
<tr>
</table>
와 같이 닫는 태그들이 다시 오픈태그로 변환되서
실제 html로 보면
<table id = "ttt">
<tr>
<td>aa</td>
<td></td>
</tr>
<tr>
</tr>
</table>
와 같이 생성이 됩니다 어떤 문제일까요..?