Skip to content

Instantly share code, notes, and snippets.

@iamjoshellis
Created March 23, 2016 15:14
Show Gist options
  • Save iamjoshellis/d88aecc95b5400fd2ead to your computer and use it in GitHub Desktop.
Save iamjoshellis/d88aecc95b5400fd2ead to your computer and use it in GitHub Desktop.
Scroll to a thing based on the href attribute of another thing
$("a").click(function(e){
e.preventDefault();
var target = $(this).attr('href');
$('html, body').animate({
scrollTop: $(target).offset().top
}, 1000);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment