i bound some functions to the 'scroll' event of jquery. With this:
$window.bind('scroll', function(){
fn1(...);
afterScroll(); // function which should fired after whole scrolling.
})
The Problem is, that i want the "afterScroll()" function been fired after all scrolling-iterations. But I think when the user scrolls one time, the event - function will be fired a few times (I tested this with some alerts) afterScroll() should just add a short animation after the scrolling is definitly finished.
For example: http://activatedrinks.com/
Someone an idea? Thanks
greets, Yannick