Ребята, я только начал изучать js ? кто нибудь доскажите или само направление как сделать правильно код прописать
$('.animate-math .number').waypoint({
offset: '100%',
triggerOnce: true,
handler: function() {
var el = $(this.element).length ? $(this.element) : $(this);
var duration = Math.floor((Math.random() * 1000) + 1000);
var tos = el.attr('data-to');
var to = (tos.replace(/(\d)(?=(\d\d\d)+([^\d]|$))/g, '$1 '));
alert (to);
$({
property: 0
}).animate({
property: to
}, {
duration: duration,
easing: 'linear',
step: function() {
el.text(Math.floor(this.property));
},
complete: function() {
el.text(this.property);
}
});
if (typeof this.destroy !== 'undefined' && $.isFunction(this.destroy)) {
this.destroy();
}
}
});
alert (to); после анимации получаю nan