Created
January 18, 2018 11:58
-
-
Save mrkkr/f80ac6b244387b375b1bf1694f9d9a06 to your computer and use it in GitHub Desktop.
Smooth scrolling po kliknięciu w menu z ID #js
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
$('a[href*=\\#]').on('click', function(e){ | |
e.preventDefault(); | |
$('html, body').animate({ | |
scrollTop : $(this.hash).offset().top | |
}, 500); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment