Ver Mensaje Individual
  #4 (permalink)  
Antiguo 15/11/2011, 11:36
Avatar de livemusic
livemusic
 
Fecha de Ingreso: abril-2011
Ubicación: Lima - Chorrillos
Mensajes: 150
Antigüedad: 13 años, 6 meses
Puntos: 18
Información Respuesta: Jquery Loop each primer registro undefined

Intenta con este codigo....


Código Javascript:
Ver original
  1. function responseResult(id){
  2.     var html;
  3.     $.ajax({
  4.         url: '{{url('user_wall_children')}}',
  5.         type: "POST",
  6.         data: {id : id },
  7.         dataType: "JSON",
  8.         beforeSend: function( xhr ) {
  9.             $('#call-comment-ajax').html('cargando...');
  10.         },
  11.         async: false,
  12.         success: function( data ) {
  13.             if(parseInt(data)!=0){
  14.                 for(var i = 0; i < data.length; i++) {
  15.                     html += data[i].message;
  16.                 }
  17.             }
  18.         }
  19.     });
  20.    
  21.     return html;
  22. }

Última edición por livemusic; 15/11/2011 a las 14:10