Reputation: 409
jScrollPane library have a scrollToElement
method which can scroll to element if it not in viewport.
Also this method have a stickToTop
parameter which scroll as little as possible to show the element (not top of the viewport, like it do scrollTop
).
Anyone knows standalone plugin for that functionality? Or how it can be realised in JS (I'm not an expert in JS and I can't extract this function from jScrollPane).
Upvotes: 0
Views: 3115
Reputation: 409
Yuu should user scrollIntoView(true)
function.
https://developer.mozilla.org/en/docs/Web/API/Element/scrollIntoView
Upvotes: 1