-
-
Save ozknozsrt/b3f5a5ddf809d8f84d9fe9cabf139a08 to your computer and use it in GitHub Desktop.
short code of smooth anchor scrolling
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
$(document).on('click', 'a[href^="#"]', function (event) { | |
event.preventDefault(); | |
$('html, body').animate({ | |
scrollTop: $($.attr(this, 'href')).offset().top | |
}, 500); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment