Ver Mensaje Individual
  #1 (permalink)  
Antiguo 01/08/2012, 15:15
silence_off
 
Fecha de Ingreso: marzo-2006
Mensajes: 137
Antigüedad: 18 años, 8 meses
Puntos: 0
Jquery form plug in

alguien ha utilizado este plug in?.. necesito ayuda.. he estado buscando pero no le encuentro el lio, estoy haciendo formularios dinamicos, y mediante el plug in subir archivos. pero al presionar el boton de submit me hace postback en la pagina, posteo el codigo:


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!!...
__________________
__Neurotic-Developer....:::: La unica limitacion de la programacion, es el programador.