What I want to do is select the next element below where I am on the page. I want to do this to create a "View next post" function. So, if I am past the beginning of post 2, then I want the function to take me to post 3. Conventional jQuery will ask me which child to use of the parents and by default use the first instance, but I want to select the next post below the top of the screen.
So far I am able to grab the current position of the page using:
var curPos = $('html').offset();
var Posi = String(curPos.top).replace(/-/g, "");
But I'm not sure how to filter a function to only select elements below that position.
Help?