Skip to content

Instantly share code, notes, and snippets.

@orhanveli
Created October 14, 2014 13:23
Show Gist options
  • Select an option

  • Save orhanveli/70edba023e0039aef580 to your computer and use it in GitHub Desktop.

Select an option

Save orhanveli/70edba023e0039aef580 to your computer and use it in GitHub Desktop.
jQuery smooth scroll to element
function scrollToElement(selector) {
var $elem = $(selector);
if ($elem.length == 0) {
return;
}
var offsetTop = $elem.offset().top;
$('html,body').animate({
"scrollTop": offsetTop
}, 700);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment