Skip to content

Instantly share code, notes, and snippets.

@kjbrum
Last active January 12, 2018 21:02
Show Gist options
  • Save kjbrum/12be2a913b987d206f23 to your computer and use it in GitHub Desktop.
Save kjbrum/12be2a913b987d206f23 to your computer and use it in GitHub Desktop.
Scroll window to an element
/**
* Scroll window to an element
*/
$('a[href^="#"]').not('a[href="#"]').click(function(e) {
e.preventDefault();
$('html, body').animate({
scrollTop: $($(this).attr('href')).offset().top
}, 500);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment