Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to scroll to a specific location on the page using jQuery?

Does the location I want to scroll to have to have:

<a name="#123">here</a>

Or can it just move to a specific DOM id?

share|improve this question
1  
just a small note: attribute "name" is not allowed in XHTML 1.1 Strict, use an ID instead – Juraj Blahunka Oct 19 '09 at 21:34
interesting question, can't use page coordinates to scroll? I think we should be able to. – Omar Abid Feb 8 '10 at 10:46
I got solution similar to your requirement at [here][1] [1]: stackoverflow.com/questions/3432656/… – user1493023 Apr 18 at 12:49

3 Answers

jQuery Scroll Plugin

since this is a question tagged with jquery i have to say, that this library has a very nice plugin for smooth scrolling, you can find it here: http://plugins.jquery.com/project/ScrollTo

Excerpts from Documentation:

$('div.pane').scrollTo(...);//all divs w/class pane

or

$.scrollTo(...);//the plugin will take care of this

Custom jQuery function for scrolling

you can use a very lightweight approach by defining your custom scroll jquery function

$.fn.scrollView = function () {
    return this.each(function () {
        $('html, body').animate({
            scrollTop: $(this).offset().top
        }, 1000);
    });
}

and use it like:

$('#your-div').scrollView();

Scroll to a page coordinates

Animate html and body elements with scrollTop or scrollLeft attributes

$('html, body').animate({
    scrollTop: 0,
    scrollLeft: 300
}, 1000);

Plain javascript

scrolling with window.scroll

window.scroll(horizontalOffset, verticalOffset);

only to sum up, use the window.location.hash to jump to element with ID

window.location.hash = '#your-page-element';

Directly in HTML (accesibility enhancements)

<a href="#your-page-element">Jump to ID</a>

<div id="your-page-element">
    will jump here
</div>
share|improve this answer
2  
+1 The lightweight approach is so cool, bravo! – jartaud Aug 14 '10 at 2:28

Yep, even in plain javascript it's pretty easy. You give an element an id and then you can use that as a "bookmark":

<div id="here">here</a>

If you want it to scroll there when a user clicks a link, you can just use the tried-and-true method:

<a href="#here">scroll to over there</a>

To do it programmatically, use scrollIntoView()

document.getElementById("here").scrollIntoView()
share|improve this answer
@homestead: nickf's solution allows you to scroll to any "id" in the document. Mine is the plain old vanilla one. – o.k.w Oct 18 '09 at 23:51
had no idea this existed. thanks! – Jason Mar 29 '12 at 20:19

Here's a pure javascript version:

location.hash = '#123';

It'll scroll automatically. Remember to add the "#" prefix.

share|improve this answer
Using the primitive way of named anchor, you can have URL that includes the hash E.g. mywebsite.com/page-about/#123 Bookmarking includes the hash + scrollintoview behaviour too. – o.k.w Oct 18 '09 at 23:54

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.