Aviator
Aviator

Reputation: 613

Auto scroll page at expanding last item

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

Answers (2)

Sato
Sato

Reputation: 1

try using JQuery Scroll.

var scroll = $(window).scrollTop();

Example: http://jsfiddle.net/satowan/8vqfxet7/

Upvotes: 0

Yogesh Patel
Yogesh Patel

Reputation: 712

You can use following approach

On item expanding event execute this:

location.hash = '#item_id';

Here "#" is mandatory

Upvotes: 1

Related Questions