Ver Mensaje Individual
  #2 (permalink)  
Antiguo 03/01/2011, 08:09
Avatar de chicohot20
chicohot20
 
Fecha de Ingreso: mayo-2009
Mensajes: 388
Antigüedad: 15 años, 5 meses
Puntos: 43
Respuesta: Problema con variables

a ver prueba con esto:
Código HTML:
Ver original
  1. <script type="text/javascript">
  2.     jQuery(function($) {
  3.         var ini_counter0 = parseInt($('#totaldownloads').html());
  4.         var fin_counter0;
  5.  
  6.         $.get('data.php?i=0', function(data) {
  7.             fin_counter0 = data;
  8.             $('#totaldownloads').countTo({
  9.                 from: ini_counter0,
  10.                 to: fin_counter0,
  11.                 speed: 1000,
  12.                 refreshInterval: 50,
  13.                 onComplete: function(value) {
  14.                     console.debug(this);
  15.                 }
  16.             });
  17.         });
  18.  
  19.        
  20.     });