Skip to content

Instantly share code, notes, and snippets.

@ben182
Created March 9, 2017 13:28
Show Gist options
  • Select an option

  • Save ben182/a134f69c04195bc76b76fa26c3df04d0 to your computer and use it in GitHub Desktop.

Select an option

Save ben182/a134f69c04195bc76b76fa26c3df04d0 to your computer and use it in GitHub Desktop.
jQuery Scroll To
$.fn.goTo = function() {
$('body').animate({
scrollTop: $(this).position().top + 'px'
}, 'slow');
return this;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment