eh aqui el codigo
Código:
de antemano gracias <script language="javascript" type="text/javascript"> function anadir() { obj=document.getElementById('tabla'); fila=document.createElement('tr'); celda_uno=document.createElement('td'); fila.appendChild(celda_uno); cuantos=document.createElement('input'); cuantos.type='text'; cuantos.name='cantidad[]'; cuantos.value='0'; celda_uno.appendChild(cuantos); celda_dos=document.createElement('td'); fila.appendChild(celda_dos); producto=document.createElement('select'); producto.name='producto[]'; opcion=document.createElement('option'); opcion.value='Prueba 1'; opcion.innerHTML='Prueba 1 a'; producto.appendChild(opcion); celda_dos.appendChild(producto); obj.appendChild(fila); } --> </script>