How do I set the position of the scroll bar on the Internet?

How to set the position of the scrollbar instead of the default at the top

update: I mean when the user first opens the website the scrollbar is at the top of the screen (default)

how to set the position of the scrollbar (middle or bottom)? so the user can see

in the middle of the web or the bottom of a webpage, how can I do this?

0


a source to share


2 answers


Can you use:

<a name="myname" />

      

where you want to scroll to ... and link to the page with:



www.example.com/mypage.html#myname

      

?

+2


a source


You can use bindings as BoltBait is requested, or use javascript:

window.scroll(x,y);

      



Although jQuery has a nice plugin that I would suggest using. Scrolling plugin

+1


a source







All Articles