Skip to content

Instantly share code, notes, and snippets.

@ingowennemaring
Created April 18, 2013 14:19
Show Gist options
  • Save ingowennemaring/5413064 to your computer and use it in GitHub Desktop.
Save ingowennemaring/5413064 to your computer and use it in GitHub Desktop.
Scroll to top of an element
$('.goto-element').on(
'click',
function(e) {
e.preventDefault();
var go = $(this).attr('href'),
position = $(go).position();
$('html, body').animate( { scrollTop: position.top } );
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment