Last active
June 20, 2018 20:31
-
-
Save KustomDeveloper/bc6dbf21cb08df8ec7a77eda7dc0bb94 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
| <script> | |
| var js = jQuery.noConflict(); | |
| js(document).on('click', 'a[href^="#"]', function (event) { | |
| event.preventDefault(); | |
| js('html, body').animate({ | |
| scrollTop: js(js.attr(this, 'href')).offset().top-100 | |
| }, 500); | |
| }); | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment