I'd like to do some fancy jQuery stuff when the user scrolled the page. But I have no idea how to tackle this problem, since there is online the scroll() method.
Any ideas?
|
I'd like to do some fancy jQuery stuff when the user scrolled the page. But I have no idea how to tackle this problem, since there is online the scroll() method. Any ideas? |
|||
|
|
|
Just an idea, you can try and make the I'm not sure if this is a good solution, but I don't think there's an actual event for 'stopped scrolling' |
|||
|
|
|
Here is a simple example using setTimeout to fire a function when the user stops scrolling:
The timer is cleared while the scroll event is firing. Once scrolling stops, the refresh function is fired. |
|||
|
|
|
There is no such event as 'scrollEnd'. I recommend that you check the value returned by |
|||||
|
|
Here is another more generic solution based on the same ideas mentioned:
|
|||
|
|
|
I pulled some code out of a quick piece I cobbled together that does this as an example (note that scroll.chain is an object containing two arrays start and end that are containers for the callback functions). Also note that I am using jQuery and underscore here.
|
|||
|
|