Skip to content

Instantly share code, notes, and snippets.

@mcdave
Created January 18, 2013 10:43
Show Gist options
  • Save mcdave/4563790 to your computer and use it in GitHub Desktop.
Save mcdave/4563790 to your computer and use it in GitHub Desktop.
Smooth scrolling to an element. Works in Chrome, Opera, Safari, IE8, and Firefox. https://coderwall.com/p/sq5mew
$('html, body').animate({'scrollTop': element.offset().top}, 'slow', 'swing');
jQuery.fn.smoothScroll = function() {
$('html, body').animate({'scrollTop': this.offset().top}, 'slow', 'swing');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment