Hi, thanks for that although the action it makes when you click the link,you can see it scroll up at a set speed rather than jumping to the to.
It is this self scrolling action that I want to impliment throughout my website, however I am not sure how to make it stop the scrolling action once it has reached its final point (the top of the page)
If you can help me with this I would be very grateful.
My code again :
Code:
<script language="JavaScript">
function pageScroll() {
window.scrollBy(0,-50); // horizontal and vertical scroll increments
scrolldelay = setTimeout('pageScroll()',5); }
Thanks