Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ThisIsMissEm/120567 to your computer and use it in GitHub Desktop.
Save ThisIsMissEm/120567 to your computer and use it in GitHub Desktop.
$('a[href^=#]').bind('click', function(e){
e.preventDefault();
var target = $(this).attr('href');
if(target !== "#"){
target = $(target);
$('html').animate({scrollTop: target.scrollTop() + target.offset()['top']}, 500);
}
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment