tkahn / Smooth-Div-Scroll

A jQuery plugin for smooth scrolling. No longer maintained.
471 stars 184 forks source link

Callback current position? #182

Closed andig closed 10 years ago

andig commented 10 years ago

I'm missing a callback that tells me which element I'm at during scrolling and to what % I've proceeded to the next element. scrolledToElementNumber doesn't seem to trigger if not specifically scrolling to a target element?

andig commented 10 years ago

The solution if of course simple:

$('.scrollWrapper').on("scroll", function() {
  ...
});