Buenas colegas tengo un consulta tengo un tabla y un button el cual me genera un row mediante javascript pero esta textbox genera quisiera asignarle valores como tamaño y id etc etc
HTML
<style type="text/css">
#form1 {
width: 886px;
height: 267px;
}
</style>
</head>
<body style="height: 402px">
<form id="form1" runat="server">
<table id="dataTable" runat="server" width="350px" border="1">
<tr>
<td class="tg-dx8v">Otros Estudios:</td>
<td class="tg-rg0h" colspan="5">(Idioma / Computación / Otros)</td>
</tr>
<tr>
<td class="tg-dx8v" rowspan="7"></td>
<td class="tg-dx8v" colspan="5">
<input type="button" value="Add Row" onclick="addRow('dataTable')" /> Ingrese Nueva Fila </td>
</tr>
<tr>
<td class="tg-yw42" colspan="5">
<asp:TextBox runat="server" ID="txtotroestudios" CssClass="bordes" Width="803px"></asp:TextBox></td>
</tr>
</table>
</form>
</body>
</html>
JAVASCRIPT
<script type="text/javascript">
function addRow(tableID) {
var table = document.getElementById(tableID);
var rowCount = table.rows.length;
var row = table.insertRow(rowCount);
var cell1 = row.insertCell(0);
var element1 = document.createElement("input");
cell1.appendChild(element1);
var cell3 = row.insertCell(2);
var element2 = document.createElement("input");
element2.type = "text";
cell3.appendChild(element2);
}
</script>