Skip to content

Instantly share code, notes, and snippets.

@mapsam
Last active August 29, 2015 14:01
Show Gist options
  • Save mapsam/6f9ddcdb122f7a3e23e1 to your computer and use it in GitHub Desktop.
Save mapsam/6f9ddcdb122f7a3e23e1 to your computer and use it in GitHub Desktop.
scroll on anchor tag click within page
var height = $('header').height(); // element to offset scroll with (i.e. your navbar if it is fixed)
$('a[href*=#]').click(function() {
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')
&& location.hostname == this.hostname) {
var $target = $(this.hash);
$target = $target.length && $target
|| $('[name=' + this.hash.slice(1) +']');
if ($target.length) {
var targetOffset = ($target.offset().top)-height; //offset from top based on element - this isn't required
$('html,body')
.animate({scrollTop: targetOffset}, 800);// set speed of animation
return false;
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment