Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

is there any way to scroll down to an anchor link with jquery?

like:

$(document).ready(function(){
  $("#gotomyanchor").click(function(){
      $.scrollSmoothTo($("#myanchor"));
  });
});

?

share|improve this question

5 Answers

up vote 9 down vote accepted

Here is how i do it:

    $(".scroll").click(function(event){
         event.preventDefault();
         //calculate destination place
         var dest=0;
         if($(this.hash).offset().top > $(document).height()-$(window).height()){
              dest=$(document).height()-$(window).height();
         }else{
              dest=$(this.hash).offset().top;
         }
         //go to destination
         $('html,body').animate({scrollTop:dest}, 2000,'swing');
     });

Then you just need to create your anchor like this:

<a class="scroll" href="#destination1">Destination 1</a>

You can see it on my website.
A demo is also available here: http://jsfiddle.net/YtJcL/


share|improve this answer
Very nice & lean – liquified Nov 16 '12 at 9:24
Great, thx for the code – Manish Pradhan May 31 at 20:59
What's the point of checking to see the lowest point to which you can scroll? Do some browsers mess up if you try to scroll below the last window-height? Chrome doesn't seem to mind; i.e., setting scrollTop: veryHighNumber just takes you to the bottom of the page. – Andrew Jun 2 at 5:40

I would use the simple code snippet from CSS-Tricks.com:

http://css-tricks.com/snippets/jquery/smooth-scrolling/

share|improve this answer
this is probably the better solution if you want all your in-page anchor links to scroll-animate without any frills etc. Otherwise jQuery.scrollTo has a lot of cool other tricks (check their demo page) – Zach L Dec 16 '11 at 15:57

jQuery.scrollTo will do everything you want and more!

You can pass it all kinds of different things:

  • A raw number
  • A string('44', '100px', '+=30px', etc )
  • A DOM element (logically, child of the scrollable element)
  • A selector, that will be relative to the scrollable element
  • The string 'max' to scroll to the end.
  • A string specifying a percentage to scroll to that part of the container (f.e: 50% goes to * to the middle).
  • A hash { top:x, left:y }, x and y can be any kind of number/string like above.
share|improve this answer
is this a plugin? because i tried it and nothing happened.. i used this: $.scrollTo("#addNewUA",800, {easing:'elasout'}); – yes123 Nov 16 '10 at 19:55
1  
Yes, it's a plugin so you'll need to download it and include it. It's pretty lightweight though and the functionality is fantastic. (NB: I don't have any personal connection beyond using it in a lot of sites) – Mark Biek Nov 16 '10 at 20:03

Here's the code I used to quickly bind jQuery scrollTo to all anchor links:

// Smooth scroll
$('a[href*=#]').click(function () {
    var hash = $(this).attr('href');
    hash = hash.slice(hash.indexOf('#') + 1);
    $.scrollTo(hash == 'top' ? 0 : 'a[name='+hash+']', 500);
    window.location.hash = '#' + hash;
    return false;
});
share|improve this answer

Best solution I have seen so far: jQuery: Smooth Scrolling Internal Anchor Links

share|improve this answer
This really is the simplest solution, plus any future links you want to smooth scroll you just add the class "scroll" to the link. – Duncanmoo May 25 at 11:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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