I\'m using JQuery with a mobile site to reposition the header nav on scroll in the absence of position:fixed support. That works fine, when the user stops scrolling the head
I believe jQuery Mobile, can do this. Take a look at the following code:
$(document).bind("scrollstop", function() {
//What occurs when the scrolling stops
alert("You have stopped scrolling");
});
$(document).bind("scrollstart", function() {
//What occurs when the scrolling starts
alert("You have started scrolling");
});