After I have finished scrolling I want to trigger an event with the jQuery mousemove function.
The problem is that by scrolling the mousemove is triggered (http://docs.jquery.com/Tutorials:Mouse_Position#Tracking_mouse_position),
I want to trigger the event only when scrolling is over and I move the mouse for "real".
I am using a pretty neat solution to see when scrolling has stopped, so I want my mousemove-check to be done after that. jQuery scroll() detect when user stops scrolling
My idea is to read the X-coordinate and after scrolling only trigger the event if the Y-coordinate also changes, but I really would prefer if i could use something like delay() or setTimeout(), but none of those are working in combination...