How to make a share-this window drop when reaching end of post?

They’ve attached a function to the scroll event of the page, it looks at the scroll position of the document relative to its height to detect when you’ve reached the bottom, in which case they animate the flyout div.

jQuery has some easy methods for this: $(document).height();, $(document).scrollTop();

edit: these may help one two