Muy buenas a todos... Mil gracias de Antemano.
Me gustaría realizar una función que me agregara el número de filas que yo quisiera siendo todas estas iguales a la que hay en la tabla...
Y estoy mirando y no me sale...
Dispongo de esta sencilla página:
<html>
<head>
<script>
function anadirFilas()
{
var miTabla = document.getElementById('TablaRespuestas');
var NuevaFila = document.getElementById('TablaRespuestas').rows[1].innerHTML
document.getElementById('TablaRespuestas').insertR ow(NuevaFila);
}
</script>
<table id="TablaRespuestas" bgcolor="#FFFFFF" width="100%" border="0" cellspacing="1" cellpadding="0">
<tr>
</tr>
<tr>
<td width="0%" ></td>
<td width="1%" class=""> </td>
<td width="10%" class="">Respuesta</td>
<td width="30%"><input type="text" name="NombreEncuesta" size="60" maxlength="50"></td>
<td width="59%" >
<input type="checkbox" name="option1" value="Milk">1 a 10
<input type="checkbox" name="option1" value="Milk">6 a 1
</td>
</tr>
</table>
<input type="button" name="Button" value="DOM" onclick="anadirFilas(5)">
</form>
</body>
</html>