Page 1 of 1

Scroll to the bottom of a div

Posted: Tue Dec 02, 2014 9:56 pm
by Jason Cheek

How can I scroll a div with a vertical scrollbar to the bottom?

The standard

code
Apperyio('item').scrollTop();
/code

doesn't seem to have an effect.


Scroll to the bottom of a div

Posted: Wed Dec 03, 2014 3:39 am
by Yurii Orishchuk

Hi Jason,

You can use native DOM element "scrollIntoView" function.

pre

Apperyio("mobilebutton_311")[0].scrollIntoView()

/pre

More details: https://developer.mozilla.org/en-US/d...

Regards.


Scroll to the bottom of a div

Posted: Thu Dec 04, 2014 4:59 am
by Jason Cheek

That works perfectly! Thanks.

Is the underlying browser implementation used to render these apps on the phone Gecko based? Mozilla? Chrome?


Scroll to the bottom of a div

Posted: Thu Dec 04, 2014 5:49 am
by Yurii Orishchuk

Hi Jason,

Yes, you can use it with these browsers.

Regards.