firstSection (div) のクローンを作成し、それを secondSection まで貼り付けるという問題に直面しています。
<script type="text/javascript">
$(document).ready(function(){
$("#firstSection").clone().prependTo("#secondSection");
});
</script>
<table width="100%" border="1">
<div id="firstSection">
<tr>
<td>1</td>
<td>1</td>
<td>1</td>
</tr>
<tr>
<td>2</td>
<td>2</td>
<td>2</td>
</tr>
<tr>
<td>3</td>
<td>3</td>
<td>3</td>
</tr>
</div>
<div id="secondSection">
<tr>
<td>9</td>
<td>9</td>
<td>9</td>
</tr>
</div>
</table>