$('.count').each(function () {
$(this).prop('Counter',0).animate({
Counter: $(this).text()
}, {
duration: 4000,
easing: 'swing',
step: function (now) {
$(this).text(Math.ceil(now));
}
});
});
<span class="count">3211000</span>
el.onAppearanceApply( function(){
console.log( this.is( el ) ); // true
} );