Reputation: 613
How can be made auto scroll of content up when we expand last item on the page? This item is expanding but is not visible until we scroll.. I tried manipulating with css but it doesnt work. Overflow: scroll is enabled. Thank You
Upvotes: 0
Views: 836
Reputation: 1
try using JQuery Scroll.
var scroll = $(window).scrollTop();
Example: http://jsfiddle.net/satowan/8vqfxet7/
Upvotes: 0
Reputation: 712
You can use following approach
On item expanding event execute this:
location.hash = '#item_id';
Here "#" is mandatory
Upvotes: 1