Skip to content

Instantly share code, notes, and snippets.

@fixable11
Last active April 23, 2018 09:32
Show Gist options
  • Save fixable11/aed42353c3ab5b7bea5f51e1ca91716e to your computer and use it in GitHub Desktop.
Save fixable11/aed42353c3ab5b7bea5f51e1ca91716e to your computer and use it in GitHub Desktop.
Nice scroll
$('a[href^="#"]').on('click', function(e){
e.preventDefault();
var href = $(this).attr('href');
if(href.length > 1){
$('html,body').animate({scrollTop:$(this.hash).offset().top}, 800,
function(){
//window.location.hash = href;
});
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment