Skip to content

Instantly share code, notes, and snippets.

@goldnetonline
Created June 11, 2016 22:51
Show Gist options
  • Select an option

  • Save goldnetonline/5ef505347228a9f285cbcf1f59bf067b to your computer and use it in GitHub Desktop.

Select an option

Save goldnetonline/5ef505347228a9f285cbcf1f59bf067b to your computer and use it in GitHub Desktop.
scrollTo Element jQuery
function scrollTo(elem) {
$('html, body').animate({
scrollTop: $(elem).offset().top
}, 'slow');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment