Basically I have a structure which is something like this:
<body>
<div> main content </div>
<div> toolbar </div>
<div> results </div>
When scrolling down, I want the "main content" to disappear off the screen. The 'toolbar' to stay flush with the top of the page, and the 'results' to scroll, disappearing into the 'toolbar' as they scroll.
EDIT: the toolbar starts off in the middle of the screen. I want it to scroll to the top, but then no further, but the rest of the page (below) keeps scrolling.
I found this tutorial http://www.wduffy.co.uk/blog/keep-element-in-view-while-scrolling-using-jquery/
But this is slightly different. In the example above, although the toolbar stays near the top, it prevents the results from being scrolled.
style="position: fixed;"could solve your needs. – jAndy Jan 25 '11 at 11:35