Código PHP:
var submitForm = document.createElement("FORM");
var siguiente=document.getElementById('TablaArchivos').getElementsByTagName("tbody")[0].getElementsByTagName('tr').length;
var tr=document.createElement('tr');
tr.id="tr"+parseInt(siguiente);
submitForm.id="form_"+parseInt(siguiente);
//submitForm.id="form0";
submitForm.action="../Archivos/ajaxar.ashx";
submitForm.method="post";
submitForm.enctype="multipart/form-data";
var td1=document.createElement('td');
var txt1=document.createElement('input');
txt1.type="file";
txt1.id="arch"+parseInt(siguiente);
txt1.style.width="450px";
td1.appendChild(txt1);
var txt2=document.createElement('input');
txt2.type="submit";
txt2.id="subir"+parseInt(siguiente);
txt2.value="Subir";
txt2.onclick=function()
{
subir('#'+submitForm.id);
}
td1.appendChild(txt1);
td1.appendChild(txt2);
td1.appendChild(submitForm);
esto es lo del plug in
Código PHP:
function subir(id)
{
$(id).ajaxForm({
beforeSend: function() {
alert('test');
},
uploadProgress: function() {
alert(id);
},
complete: function(xhr) {
status.html(xhr.responseText);
}
});
}
agradeceria mucho la ayuda!!...