Ver Mensaje Individual
  #3 (permalink)  
Antiguo 15/10/2010, 14:21
Avatar de chicohot20
chicohot20
 
Fecha de Ingreso: mayo-2009
Mensajes: 388
Antigüedad: 15 años
Puntos: 43
Respuesta: mostrar valores de array en each

Prueba con esto:
Código Javascript:
Ver original
  1. $(":input[id^='u']").live("keyup",function(){
  2.             var num=[];
  3.             $(":input[id^='u']").each(function(i){
  4.                 num[i]=$(this).val();
  5.             });
  6.             $('.resultado').html(num.join(','));
  7.         });