Created
January 31, 2017 09:01
-
-
Save maxxscho/7bea7e42ab865721add7ce5264dd5977 to your computer and use it in GitHub Desktop.
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
// Jumplink scrolling | |
// ------------------------------------- | |
$('a[href^=#]').on('click', function(e) { | |
e.preventDefault(); | |
var $this = $(this), | |
targetId = $this.attr('href'), | |
target = $(targetId); | |
if(target.length) { | |
$('html, body').animate({ | |
scrollTop: $(target).offset().top | |
}, 600); | |
} | |
return false; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment