setTimeout(function) を 850 のスクロール位置にトリガーしようとしていますが、助けが必要です....
$(document).ready(function() {
var below_850 = false;
$(document).scroll(function() {
var top = $(document).scrollTop();
below_850 = (top > 850);
}
setTimeout(function(){
$('.odometer').html('652348');
}, 1000);
}
});