How to scroll automaticly down

Gaetan16

Newbie
Joined
Nov 9, 2010
Messages
26
Reaction score
1
How to scroll automaticly down on my page ? I want wen the people click on the link of a page, that they see the page they just clicked in the middle of the page...

Does somebody can find of has the html code for me ? Thanks anyway!

It's on Wordpress BTW
 
Last edited:
edit the <body> tag of your site to look like this

<body onload="window.location.href = '#scrolltohere';">

then put

<div id="scrolltohere"></div>

in your website's html where you want to scroll to
 
Last edited:



Use the scroll() method to jump to a particular point on the page. The target position is specified in pixels from the top left corner of the page, horizontally and vertically.
function jumpScroll() {
window.scroll(0,150); // horizontal and vertical scroll targets
}


<a href="javascript:jumpScroll()">Jump to another place on the page</a>
 
Back
Top