Ver Mensaje Individual
  #1 (permalink)  
Antiguo 24/10/2013, 16:08
cesa_r
 
Fecha de Ingreso: julio-2013
Mensajes: 158
Antigüedad: 10 años, 10 meses
Puntos: 6
Pregunta multiples botones con un mismo id con ajaxUpload

Bueno mi problema es el siguiente tengo varios botones con un mismo id pero solo me funciona en el primero.

var button = $('[id=subir]'), interval;
new AjaxUpload(button,{
action: 'Topic/modules/php/upload_comment.php',
name: 'upload_img_comment',
onSubmit : function(file, ext){
// desabilitar el boton
this.disable();
//......................

},
onComplete: function(file, response){
// Habilitar boton otra vez
this.enable();

//......................
}
});

});

Si me pudieran ayudar gracias.