<div id="myDiv1">
<table>
<tr id="row">
</table>
</div>
<div id="myDiv2">
<table>
<tr id="row">
</table>
</div> 
Here I need to append different '<td>'s into these two . I have tried this code 
$('#row').append()
but its only putting '<td>'s into the row of myDiv1.
Can anyone help me to do this.
 
     
    