Ver Mensaje Individual
  #2 (permalink)  
Antiguo 16/06/2015, 12:13
PHPeros
Colaborador
 
Fecha de Ingreso: septiembre-2013
Ubicación: España
Mensajes: 3.648
Antigüedad: 11 años, 2 meses
Puntos: 578
Respuesta: Funcion totales

Creas una variable y la vas incrementando:

Código:
var contador = 0;
$.each(data, function(i,item){
      contador += +item.importe;
      html += '<tr>'
      html += '<td>'+item.fecha_vencimiento+'</td>'
      html += '<td>'+item.nombre+'</td>'
      html += '<td>'+item.ref_factura+'</td>'
      html += '<td>'+item.importe+' €</td>'
      html += '</tr>';
});