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

I have a couple of hyperlinks on my page. A FAQ that users will read when they visit my help section.

Using Anchor links, I can make the page scroll towards the anchor and guide the users there.

Is there a way to make that scrolling smooth?

Something like this: http://www.position-relative.net/creation/anchor/

But notice that he's using a custom javascript lib. Maybe jQuery offers somethings like this baked in?

share|improve this question

2 Answers

up vote 34 down vote accepted
$('a').click(function(){
    $('html, body').animate({
        scrollTop: $( $.attr(this, 'href') ).offset().top
    }, 500);
    return false;
});

And here's the fiddle: http://jsfiddle.net/9SDLw/


If your target element does not have an ID, and you're linking to it by its name, use this:

$('a').click(function(){
    $('html, body').animate({
        scrollTop: $('[name="' + $.attr(this, 'href').substr(1) + '"]').offset().top
    }, 500);
    return false;
});

For increased performance, you should cache that $('html, body') selector, so that it doesn't run every single time an anchor is clicked:

var $root = $('html, body');
$('a').click(function() {
    $root.animate({
        scrollTop: $( $.attr(this, 'href') ).offset().top
    }, 500);
    return false;
});

If you want the URL to be updated, do it within the animate callback:

var $root = $('html, body');
$('a').click(function() {
    var href = $.attr(this, 'href');
    $root.animate({
        scrollTop: $(href).offset().top
    }, 500, function () {
        window.location.hash = href;
    });
    return false;
});
share|improve this answer
This seems to remove the #extension from the URL, breaking the back function. Is there a way around this? – Fletch Jan 22 at 18:46
@Fletch - I added a solution to that to the answer. – Joseph Silber Jan 22 at 18:50
Great job. This is a simple and perfect solution to in-page anchor smooth scrolling. – Wesley Terry Feb 13 at 15:03
Could you please fix a typo in the third line of your last snippet: should be attr, not att. – mezhaka Feb 23 at 20:53
1  
@JosephSilber shouldn't that be scrollTop: $(this.hash).offset().top instead of scrollTop: $(this.href).offset().top? – Gregory Pakosz Mar 30 at 22:56
show 8 more comments

You need to use jQuery scroll() with jQuery Easing to get this to work like you want it to. Scroll will slide your page like you might expect the browser to do, but will allow you to use easing to make it smooth, with different methods (as you will see in the easing demos section at below link).

jQuery scroll() jQuery Easing Plugin

Happy haxin.

_wryteowl

share|improve this answer

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.