Skip to content

Instantly share code, notes, and snippets.

@mrkkr
Created January 18, 2018 11:58
Show Gist options
  • Save mrkkr/f80ac6b244387b375b1bf1694f9d9a06 to your computer and use it in GitHub Desktop.
Save mrkkr/f80ac6b244387b375b1bf1694f9d9a06 to your computer and use it in GitHub Desktop.
Smooth scrolling po kliknięciu w menu z ID #js
$('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