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?
|
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:
Or can it just move to a specific DOM id? |
|||||||||
|
|
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:
or
Custom jQuery function for scrolling you can use a very lightweight approach by defining your custom scroll jquery function
and use it like:
Scroll to a page coordinates Animate
Plain javascript scrolling with
only to sum up, use the window.location.hash to jump to element with ID
Directly in HTML (accesibility enhancements)
|
|||||
|
|
Yep, even in plain javascript it's pretty easy. You give an element an id and then you can use that as a "bookmark":
If you want it to scroll there when a user clicks a link, you can just use the tried-and-true method:
To do it programmatically, use
|
|||
|
Here's a pure javascript version:
It'll scroll automatically. Remember to add the "#" prefix. |
|||
|