Skip to content

Instantly share code, notes, and snippets.

@kapusta
Created February 15, 2013 15:05
Show Gist options
  • Save kapusta/4960901 to your computer and use it in GitHub Desktop.
Save kapusta/4960901 to your computer and use it in GitHub Desktop.
A compact jQuery "scrollto" snippet.
// Distilled from http://stackoverflow.com/questions/6677035/jquery-scroll-to-element
$outer_container.animate({
scrollTop: $("#inner_container").offset().top
}, 2000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment