Possible Duplicate:
Javascript: do an action after user is done scrolling
the Scroll event fires when the user starts scrolling the page, right? How to know if he is finished then? I want to call a function after the scrolling has done. Does anyone has any idea?
Thanks!
P.S. With jQuery please, but pure JS is also okay.
You can achieve this using
setTimeout. you can change timeout (im using 100) value according to your requirement.