I want to load jquery function when I reach the specific div in the page. for example I have number-animating jquery library that load on page loading complete. ButI want it delay until visitors reach that part of page.(for example scrolling to a div) this is my code
$('.animate-number').each(function(){
$(this).animateNumbers($(this).attr("data-value"), true, parseInt($(this).attr("data-duration")));
I search many pages but cant find any helpful trigger for it