Buenas!!!!!!!
Hola amigos necesito si alguien me puede ayudar con esa funcion.
Tengo dos combox donde al seleccionar lo que quiero de esos combos me lo inserte abajo, solamente puedo hacer que me inserte uno solo aca dejo el codigo
function fEscribeDir()
{
addFormField(document.formu1,'text','text',+i);
document.formu1.numficheros.value=i;
i=i+1;
}
function addFormField (form, fieldType, fieldName, fieldValue)
{
if (document.getElementById)
{
var input = document.createElement('INPUT');
var div = document.createElement('DIV');
if (document.all)
{ // what follows should work
// with NN6 but doesn't in M14
input.type = fieldType;
input.name = fieldName;
input.value = document.all.idtipo.value;
input.value = document.all.idsub.value;
}
else if (document.getElementById)
{ // so here is the
// NN6 workaround
input.setAttribute('type', fieldType);
input.setAttribute('name', fieldName);
input.setAttribute('value', fieldValue);
}
input.style.width="320px";
div.appendChild(input);
document.getElementById('ficheros').appendChild(di v);
}
}
desde ya muchas gracias