Click to See Complete Forum and Search --> : Scrolling object into view


Vic
03-25-2006, 02:24 AM
Is there any cross-browser compatible way of scrolling an object (eg a <textarea>) fully into view?

I can achieve this through <a href='#myObject'>, but this way someone actually has to click on the link to scroll. I would like to achieve this automatically from my javascript code.

Any thoughts would be greatly appreciated...

Fang
03-25-2006, 03:25 AM
scrollIntoView (http://developer.mozilla.org/en/docs/DOM:element.scrollIntoView)

Vic
03-25-2006, 05:31 AM
Just what the doctor ordered!!! Thanks, it works great!