Ver Mensaje Individual
  #2 (permalink)  
Antiguo 09/05/2004, 03:33
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 9 meses
Puntos: 772
Hola, HiperJP.

No se si he entendido bien tu mensaje, así que te no se si la respuesta será adecuada. Pon la tabla así:

<table id="tabla">
<tr>
...

Y la función de esta otra forma:

function AddSerial(cant) {
Código PHP:
function AddSerial(cant) {
txt=document.getElementById('tabla').innerHTML;
for (
i=0canti++) {
txt += '<tr><td><INPUT NAME="serials[]" TYPE="text"><DIV ID="Series'+(i+1)+'"></DIV></tr></td> ';
}
document.getElementById('tabla').innerHTML=txt;

Suerte. Saludos,

Última edición por JavierB; 09/05/2004 a las 03:34