i have made this code to remove table row :
jQuery('tr#rowAttend1').remove();
HTML :
Three rows with same id . For example :
<tr id="rowAttend1" ><td>ssss</td></tr>
<tr id="rowAttend1" ><td>ddddd</td></tr>
<tr id="rowAttend1" ><td>ccccc</td></tr>
but i want all three to be removed it works fine in all browsers except ie7 ? Can anybody help me?