Reputation: 1757
I've been looking for a jquery plugin for the last couple hours. What I'm looking for is a panel that stays on screen all the time off to the side of my full story pages. Similar to the follow me sharing tabs on mashable.com and for a similar purpose. I simply want the tweet digg this and share on facebook buttons on my page to stay on screen no matter where on the page the user is currently reading
Upvotes: 0
Views: 601
Reputation: 7183
I think what you're trying to do would be best done using css position:fixed applied to whatever drawer element you have. Position:Fixed; in css defines a position for an element based on the browser window regardless of the page content position, so that when you scroll, the "fixed" positioned element stays still.
Upvotes: 1
Reputation: 325
I'm not sure if this is what you're after but try jQuery Scroll Follow
Upvotes: 0