Skip to content

Instantly share code, notes, and snippets.

@jamenlyndon
Created April 29, 2015 04:27
Show Gist options
  • Save jamenlyndon/d6fd09110397fb26745f to your computer and use it in GitHub Desktop.
Save jamenlyndon/d6fd09110397fb26745f to your computer and use it in GitHub Desktop.
Scroll to anchors (jQuery)
// Scroll to anchors
$(document).ready(function() {
$("a[href^=#]").click(function(e) {
e.preventDefault();
var dest = $(this).attr('href').replace('#', '');
$('html,body').animate({ scrollTop: $('[name='+dest+']').offset().top }, 'slow');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment