jquery how to get the page\'s current screen top position?
If I scroll my mouse wheel to some part of the page, how do I get the page\'s current top position?
Use this to get the page scroll position.
var screenTop = $(document).scrollTop(); $('#content').css('top', screenTop);