Skip to content

Instantly share code, notes, and snippets.

@thom-nic
Created June 9, 2014 14:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thom-nic/2968b4764852a0ce5b96 to your computer and use it in GitHub Desktop.
Save thom-nic/2968b4764852a0ce5b96 to your computer and use it in GitHub Desktop.
smooth scroll to element in HTML
/**
* Scroll to the given element on the page
*/
function scrollTo(elem) {
$('html').animate({
scrollTop: $(elem).offset().top
}, 600);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment