Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Scrollbar Position

Status
Not open for further replies.

toeter

Technical User
Apr 29, 2003
33
DE
hi,

I have page with a scrollbar,
the scrollbar positions itself standard at the top of the page,

but I want the scroll bar (onload) to be at the mid of my page (or at a certain line in my page)

Standard

text -
text ||| scrollbar at top
text |||
text |
text |
text |
text |
text -


How I want it

text -
text |
text |
text |
text ||| ScrollBar in the middle (or so)
text |||
text |
text -

Is this posible??
 
got it

<script>
function scroll() {
window.scrollTo(0, 100);
}
</script>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top