vote up 1 vote down star

Can anyone tell me how to turn

<a href="javascript:scroll(0,0)"> Top</a>

aka the Top of Page link into a Bookmarklet.

Not very knowledgeable with JavaScript and cannot get this into want I want it to be.

Or if I am using the wrong code, then can you fix it for me and turn it into the bookmarklet.

flag

3 Answers

vote up 4 vote down

Create a bookmark with location:

javascript:void(function(){window.scroll(0,0)}())

Works in Firefox 3 and IE 7.

link|flag
There's no reason to use void + an anonymous self invoking function... – J-P May 27 at 13:52
@J-P Except that it doesn't work in IE without it. Give it a whirl. – altCognito May 27 at 13:58
vote up 0 vote down

if u use jquery this link help http://blog.ph-creative.com/post/jQuery-Plugin-Scroll-to-Top.aspx

link|flag
vote up 0 vote down

Another option ...

function scrollUp(){
  var offy;
  if(self.pageYOffset) {
        offy = self.pageYOffset;
  } else if(document.documentElement && document.documentElement.scrollTop){
        offy = document.documentElement.scrollTop;
  } else {
        offy = document.body.scrollTop;
  }

  if(offy <= 0) return;

  window.scrollBy(0, -50);
  setTimeout("scrollUp()", 10);

}

<a href="javascript: scrollUp();">Start Scroller!</a>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.