Con respecto a este tópico, yo tengo el siguiete código, el problema es que no encontré la manera de agregarle un atributo class:
Código:
Num=0;
function Agregar(){
obj=document.getElementById('tabla');
f=document.getElementById('fila');
Num++;
elTr=document.createElement('tr');
elTd=document.createElement('td');
elTd.innerHTML='valor '+Num+':';
elTr.appendChild(elTd);
elTd=document.createElement('td');
elem=document.createElement('input');
elem.type='valor';
elem.name='valor'+Num;
elTd.appendChild(elem);
elTr.appendChild(elTd);
obj.insertBefore(elTr,f)
return Num;
}
Alguien sabe como podría darle al input text la clase "miClase"
gracias