Skip to content

Instantly share code, notes, and snippets.

@andrewberls
Created February 5, 2012 19:15
Show Gist options
  • Save andrewberls/1747505 to your computer and use it in GitHub Desktop.
Save andrewberls/1747505 to your computer and use it in GitHub Desktop.
jQuery Scrolling Function
function scrollTo(id) {
$('html,body').animate({scrollTop: $("#" + id).offset().top}, 'slow');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment