Moving the page
I need to move the page from top to bottom, just like it happens 开发者_JS百科in the best site of the world( stackoverflow), when we change the type of sorting of our questions, it moves the page.
How can I get such an effect? I even don't know how to search for information about it, because don't know the keywords, so I decided to ask here :/
Thanks
Did you mean scrolling the page automatically? If so, have a look at:
jQuery ScrollTo plugin
See this demo to confirm if that is what you are looking for.
keywords: "scroll page to position using javascript" in particular, you want the window.scrollTo() method
window.scrollTo(x,y);
that exists in native JavaScript, or a jQuery method that wraps this (e.g. jQuery ScrollTo plugin).
精彩评论