Skip to content

Instantly share code, notes, and snippets.

@arosh
Created July 12, 2012 12:45
Show Gist options
  • Save arosh/3097887 to your computer and use it in GitHub Desktop.
Save arosh/3097887 to your computer and use it in GitHub Desktop.
scroll.js
function smooth_scroll(selector, target) {
$(selector).click(function() {
var pos = $(target).offset().top;
$('body').animate( { scrollTop: pos }, 'slow' );
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment