hey bastian
thanx 4 reply
ive tried to use js and am only really new 2 programming
cant get it working ive pasted the code for the dyamically added
row if u could a look
thanx a million
<script>
function addRow()
{
var obj=document.getElementById("mytable");
var newNode = obj.children(0).cloneNode(true);
obj.appendChild(newNode);
}
</script>
<table width="100%" border="1" id="mytable" mm_noconvert="TRUE">
<tr>
<td height="24">
<input type="text" name="grade1"></td>
<td><input type="text" name="grade2"></td>
<td><input type="text" name="grade3"></td>
<td><input type="text" name="grade4"></td>
</tr>
</table>
<br><br><br>
<td><input type="button" value="Add Row" onclick="addRow();"></td>
</td>🙂 🙂