Last active
January 12, 2018 21:02
-
-
Save kjbrum/12be2a913b987d206f23 to your computer and use it in GitHub Desktop.
Scroll window to an element
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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