CanYildirim adlı üyeden alıntı: mesajı görüntüle
waypoint kullanabilirsiniz

http://imakewebthings.com/waypoints/
$('#contentDiv').waypoint(function() {
alert('do something');
});
hocam peki ben aşşağıdaki kodu ona nasıl uyarlıyacağım?

$.noConflict();

jQuery(document).ready(function($) {

    // Counter Number
    $('.count').each(function () {
        $(this).prop('Counter',0).animate({
            Counter: $(this).text()
        }, {
            duration: 3000,
            easing: 'swing',
            step: function (now) {
                $(this).text(Math.ceil(now));
            }
        });
    });
});